@@ -67,29 +67,18 @@ jobs:
6767 instrumented : false
6868 primary : true
6969 stdenv : stdenv
70- withAWS : true
71- # TODO: remove once curl-based-s3 fully lands
72- - scenario : on ubuntu (no s3)
73- runs-on : ubuntu-24.04
74- os : linux
75- instrumented : false
76- primary : false
77- stdenv : stdenv
78- withAWS : false
7970 - scenario : on macos
8071 runs-on : macos-14
8172 os : darwin
8273 instrumented : false
8374 primary : true
8475 stdenv : stdenv
85- withAWS : true
8676 - scenario : on ubuntu (with sanitizers / coverage)
8777 runs-on : ubuntu-24.04
8878 os : linux
8979 instrumented : true
9080 primary : false
9181 stdenv : clangStdenv
92- withAWS : true
9382 name : tests ${{ matrix.scenario }}
9483 runs-on : ${{ matrix.runs-on }}
9584 timeout-minutes : 60
@@ -112,14 +101,12 @@ jobs:
112101 run : |
113102 nix build --file ci/gha/tests/wrapper.nix componentTests -L \
114103 --arg withInstrumentation ${{ matrix.instrumented }} \
115- --argstr stdenv "${{ matrix.stdenv }}" \
116- ${{ format('--arg withAWS {0}', matrix.withAWS) }}
104+ --argstr stdenv "${{ matrix.stdenv }}"
117105 - name : Run VM tests
118106 run : |
119107 nix build --file ci/gha/tests/wrapper.nix vmTests -L \
120108 --arg withInstrumentation ${{ matrix.instrumented }} \
121- --argstr stdenv "${{ matrix.stdenv }}" \
122- ${{ format('--arg withAWS {0}', matrix.withAWS) }}
109+ --argstr stdenv "${{ matrix.stdenv }}"
123110 if : ${{ matrix.os == 'linux' }}
124111 - name : Run flake checks and prepare the installer tarball
125112 run : |
@@ -131,7 +118,6 @@ jobs:
131118 nix build --file ci/gha/tests/wrapper.nix codeCoverage.coverageReports -L \
132119 --arg withInstrumentation ${{ matrix.instrumented }} \
133120 --argstr stdenv "${{ matrix.stdenv }}" \
134- ${{ format('--arg withAWS {0}', matrix.withAWS) }} \
135121 --out-link coverage-reports
136122 cat coverage-reports/index.txt >> $GITHUB_STEP_SUMMARY
137123 if : ${{ matrix.instrumented }}
0 commit comments