blob: 49e2ab66445a690768f5a91bd49b00dcb24f20e5 [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:
Mohammed Nasere50b6b52022-09-21 16:05:56 -040033 - name: Install QEMU static binaries
34 uses: docker/setup-qemu-action@v2
35
36 - name: Configure Buildkit
37 uses: docker/setup-buildx-action@v2
38
Mohammed Naser9a5ff202022-09-07 15:56:48 -040039 - name: Checkout project
40 uses: actions/checkout@v3.0.2
41
42 - name: Set up Go
43 uses: actions/setup-go@v3.3.0
44 with:
45 go-version-file: go.mod
46 cache: true
47
Mohammed Naser6d1f1b22022-09-21 15:41:53 -040048 - name: Authenticate with Quay.io
49 uses: docker/login-action@v2
50 if: ${{ github.event_name == 'push' }}
51 with:
52 registry: quay.io
53 username: ${{ secrets.QUAY_USERNAME }}
54 password: ${{ secrets.QUAY_ROBOT_TOKEN }}
55
56 - name: Build image
57 uses: docker/build-push-action@v3
58 with:
59 cache-from: type=gha
60 cache-to: type=gha,mode=max
61 context: .
62 platforms: linux/amd64
63 push: ${{ github.event_name == 'push' }}
64 tags: quay.io/vexxhost/atmosphere:${{ github.sha }}
65
Mohammed Naser9a5ff202022-09-07 15:56:48 -040066 - name: Clean-up stale stacks
67 run: go run ./cmd/atmosphere-ci molecule cleanup
68 env:
69 OS_AUTH_URL: https://auth.vexxhost.net/v3
70 OS_REGION_NAME: ca-ymq-1
71 OS_USER_DOMAIN_NAME: Default
72 OS_USERNAME: ${{ secrets.OS_USERNAME }}
73 OS_PASSWORD: ${{ secrets.OS_PASSWORD }}
74 OS_PROJECT_DOMAIN_NAME: Default
75 OS_PROJECT_NAME: ${{ secrets.OS_PROJECT_NAME }}
76
dependabot[bot]5ea722f2022-09-12 03:46:06 +000077 - uses: gofrolist/molecule-action@v2.2.41
Mohammed Naser9a5ff202022-09-07 15:56:48 -040078 timeout-minutes: 90
79 env:
80 ATMOSPHERE_STACK_NAME: "atmosphere-${{ github.run_id }}-${{ github.run_attempt }}"
81 OS_AUTH_URL: https://auth.vexxhost.net/v3
82 OS_REGION_NAME: ca-ymq-1
83 OS_USER_DOMAIN_NAME: Default
84 OS_USERNAME: ${{ secrets.OS_USERNAME }}
85 OS_PASSWORD: ${{ secrets.OS_PASSWORD }}
86 OS_PROJECT_DOMAIN_NAME: Default
87 OS_PROJECT_NAME: ${{ secrets.OS_PROJECT_NAME }}
Mohammed Naser6d1f1b22022-09-21 15:41:53 -040088
89 - name: Promote image
90 uses: akhilerm/tag-push-action@v2.0.0
91 if: github.ref == 'refs/heads/main'
92 with:
93 src: quay.io/vexxhost/atmosphere:${{ github.sha }}
94 dst: quay.io/vexxhost/atmosphere:latest