blob: d0a6f16ba8b1a42468c11da5b1bd46404f44743d [file] [log] [blame]
Mohammed Naser9a5ff202022-09-07 15:56:48 -04001name: integration
2
3concurrency:
4 group: ${{ github.head_ref || github.run_id }}
5 cancel-in-progress: true
6
7on:
8 pull_request:
9 types:
10 - opened
11 - synchronize
12 - reopened
13 paths:
14 - .github/workflows/integration.yml
15 - molecule/**
16 - playbooks/**
17 - plugins/**
18 - roles/**
19 push:
20 branches:
21 - main
22 paths:
23 - .github/workflows/integration.yml
24 - molecule/**
25 - playbooks/**
26 - plugins/**
27 - roles/**
28
29jobs:
30 molecule:
31 runs-on: ubuntu-latest
32 steps:
33 - name: Checkout project
34 uses: actions/checkout@v3.0.2
35
36 - name: Set up Go
37 uses: actions/setup-go@v3.3.0
38 with:
39 go-version-file: go.mod
40 cache: true
41
Mohammed Naser6d1f1b22022-09-21 15:41:53 -040042 - name: Authenticate with Quay.io
43 uses: docker/login-action@v2
44 if: ${{ github.event_name == 'push' }}
45 with:
46 registry: quay.io
47 username: ${{ secrets.QUAY_USERNAME }}
48 password: ${{ secrets.QUAY_ROBOT_TOKEN }}
49
50 - name: Build image
51 uses: docker/build-push-action@v3
52 with:
53 cache-from: type=gha
54 cache-to: type=gha,mode=max
55 context: .
56 platforms: linux/amd64
57 push: ${{ github.event_name == 'push' }}
58 tags: quay.io/vexxhost/atmosphere:${{ github.sha }}
59
Mohammed Naser9a5ff202022-09-07 15:56:48 -040060 - name: Clean-up stale stacks
61 run: go run ./cmd/atmosphere-ci molecule cleanup
62 env:
63 OS_AUTH_URL: https://auth.vexxhost.net/v3
64 OS_REGION_NAME: ca-ymq-1
65 OS_USER_DOMAIN_NAME: Default
66 OS_USERNAME: ${{ secrets.OS_USERNAME }}
67 OS_PASSWORD: ${{ secrets.OS_PASSWORD }}
68 OS_PROJECT_DOMAIN_NAME: Default
69 OS_PROJECT_NAME: ${{ secrets.OS_PROJECT_NAME }}
70
dependabot[bot]5ea722f2022-09-12 03:46:06 +000071 - uses: gofrolist/molecule-action@v2.2.41
Mohammed Naser9a5ff202022-09-07 15:56:48 -040072 timeout-minutes: 90
73 env:
74 ATMOSPHERE_STACK_NAME: "atmosphere-${{ github.run_id }}-${{ github.run_attempt }}"
75 OS_AUTH_URL: https://auth.vexxhost.net/v3
76 OS_REGION_NAME: ca-ymq-1
77 OS_USER_DOMAIN_NAME: Default
78 OS_USERNAME: ${{ secrets.OS_USERNAME }}
79 OS_PASSWORD: ${{ secrets.OS_PASSWORD }}
80 OS_PROJECT_DOMAIN_NAME: Default
81 OS_PROJECT_NAME: ${{ secrets.OS_PROJECT_NAME }}
Mohammed Naser6d1f1b22022-09-21 15:41:53 -040082
83 - name: Promote image
84 uses: akhilerm/tag-push-action@v2.0.0
85 if: github.ref == 'refs/heads/main'
86 with:
87 src: quay.io/vexxhost/atmosphere:${{ github.sha }}
88 dst: quay.io/vexxhost/atmosphere:latest