Skip to content

Commit

Permalink
chore: run builds using ubuntu-latest
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <[email protected]>
  • Loading branch information
alexec committed Nov 3, 2021
1 parent 7886a2b commit a35d0ac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
# 5m30
timeout-minutes: 8
steps:
Expand All @@ -38,7 +38,7 @@ jobs:

e2e-tests:
name: E2E Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [ tests, codegen, lint ]
env:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
run: kubectl -n argo logs deploy/minio
codegen:
name: Codegen
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [ tests ]
timeout-minutes: 20
env:
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [ tests, codegen ]
timeout-minutes: 10
env:
Expand All @@ -204,7 +204,7 @@ jobs:

ui:
name: UI
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 6
env:
NODE_OPTIONS: --max-old-space-size=4096
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
deploy:
if: github.repository == 'argoproj/argo-workflows'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build-linux-amd64:
name: Build & push linux/amd64
if: github.repository == 'argoproj/argo-workflows'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ linux/amd64 ]
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
build-linux-arm64:
name: Build & push linux/arm64
if: github.repository == 'argoproj/argo-workflows'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ linux/arm64 ]
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
push-images:
name: Push manifest with all images
if: github.repository == 'argoproj/argo-workflows'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [ build-linux-amd64, build-linux-arm64, build-windows ]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
test-images-linux-amd64:
name: Try pulling linux/amd64
if: github.repository == 'argoproj/argo-workflows'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [ push-images ]
strategy:
matrix:
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
done
publish-release:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: github.repository == 'argoproj/argo-workflows'
needs: [ push-images, test-images-linux-amd64, test-images-windows ]
env:
Expand Down

0 comments on commit a35d0ac

Please sign in to comment.