Skip to content

Commit

Permalink
fix: delete container for smoke tests
Browse files Browse the repository at this point in the history
Signed-off-by: Xoán Mallón <[email protected]>
  • Loading branch information
xoanmm committed Jul 15, 2022
1 parent ae452d7 commit c104cf7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 22 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,19 @@ jobs:
needs: build
name: validate-arm64
runs-on: ARM64
container: ghcr.io/kedacore/build-tools:main
concurrency: arm-smoke-tests
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.17

- name: Install prerequisites
run: |
apt update
apt install curl npm make ca-certificates gcc libc-dev -y
env:
DEBIAN_FRONTEND: noninteractive

- name: Check out code
uses: actions/checkout@v3
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,27 +92,6 @@ jobs:
if: steps.filter.outputs.dockerfiles == 'true'
run: make docker-build

test-smoke-arm64:
name: validate-arm64
runs-on: ARM64
container: ghcr.io/kedacore/build-tools:main
concurrency: arm-smoke-tests
steps:

- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Create k8s v1.23 Kind Cluster
uses: helm/kind-action@main
with:
node_image: kindest/node:v1.23.0@sha256:49824ab1727c04e56a21a5d8372a402fcd32ea51ac96a2706a12af38934f81ac
cluster_name: smoke-tests-cluster

- name: Run smoke test
run: make arm-smoke-test

validate-build-tools:
name: Validate build-tools - ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
Expand Down

0 comments on commit c104cf7

Please sign in to comment.