Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "workflows: build image in parallel" #2372

Merged
merged 1 commit into from
Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/atlantis-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,8 @@ concurrency:
cancel-in-progress: true

jobs:
docker:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- linux/arm64/v8
- linux/amd64
- linux/arm/v7
steps:
- uses: actions/checkout@v3

Expand All @@ -50,7 +44,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: docker-base
platforms: ${{ matrix.platform }}
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/atlantis-base:${{env.TODAY}}
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/atlantis-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- linux/arm64/v8
- linux/amd64
- linux/arm/v7
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down Expand Up @@ -50,7 +44,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: ${{ matrix.platform }}
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/atlantis:dev
Expand All @@ -65,7 +59,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: ${{ matrix.platform }}
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/atlantis:${{ env.RELEASE_VERSION }}
Expand All @@ -76,7 +70,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: ${{ matrix.platform }}
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/atlantis:${{ env.RELEASE_VERSION }}
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/testing-env-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- linux/arm64/v8
- linux/amd64
- linux/arm/v7
steps:
- uses: actions/checkout@v3

Expand All @@ -46,7 +40,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: testing
platforms: ${{ matrix.platform }}
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
push: true
tags: |
ghcr.io/runatlantis/testing-env:${{env.TODAY}}
Expand Down