Skip to content

Commit 7de207d

Browse files
committed
test if one hook will be enough
Signed-off-by: Arjun Raja Yogidas <[email protected]>
1 parent 6c30eb0 commit 7de207d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ env:
2525
jobs:
2626
test-on-codebuild:
2727
if: github.repository == 'awslabs/soci-snapshotter'
28-
runs-on: codebuild-soci-snapshotter-build-test-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.os }}
28+
runs-on: codebuild-soci-snapshotter-instance-dev-new-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
os: [arm-3.0-large, ubuntu-7.0-xlarge, ubuntu-7.0-small, ubuntu-7.0-medium, ubuntu-7.0-medium]
31+
os: [arm-3.0-large]
3232
timeout-minutes: 15
3333
steps:
3434
- uses: actions/checkout@v4
@@ -40,22 +40,24 @@ jobs:
4040

4141
test-on-fork:
4242
if: github.repository != 'awslabs/soci-snapshotter'
43-
runs-on: codebuild-soci-snapshotter-build-test-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.os }}
43+
runs-on: codebuild-soci-snapshotter-instance-dev-new-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.os }}
4444
strategy:
4545
matrix:
46-
os: [arm-3.0-large, ubuntu-7.0-xlarge]
46+
os: [arm-3.0-large]
4747
timeout-minutes: 15
4848
steps:
4949
- uses: actions/checkout@v4
5050
- uses: actions/setup-go@v5
5151
with:
5252
go-version: ${{ env.GO_VERSION }}
53+
- run: dnf list --installed
54+
- run: dnf install zlib-static.aarch64 -y
5355
- run: make
5456
- run: make test
5557

5658
integration-on-codebuild:
5759
if: github.repository == 'awslabs/soci-snapshotter'
58-
runs-on: codebuild-soci-snapshotter-build-test-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
60+
runs-on: codebuild-soci-snapshotter-instance-dev-new-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
5961
timeout-minutes: 40
6062
strategy:
6163
fail-fast: false
@@ -72,7 +74,7 @@ jobs:
7274

7375
integration-on-fork:
7476
if: github.repository != 'awslabs/soci-snapshotter'
75-
runs-on: codebuild-soci-snapshotter-build-test-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
77+
runs-on: codebuild-soci-snapshotter-instance-dev-new-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
7678
timeout-minutes: 40
7779
strategy:
7880
fail-fast: false

0 commit comments

Comments
 (0)