@@ -67,29 +67,29 @@ jobs:
6767 instrumented : false
6868 primary : true
6969 stdenv : stdenv
70- withCurlS3 : true
70+ withAWS : true
7171 # TODO: remove once curl-based-s3 fully lands
7272 - scenario : on ubuntu (no s3)
7373 runs-on : ubuntu-24.04
7474 os : linux
7575 instrumented : false
7676 primary : false
7777 stdenv : stdenv
78- withCurlS3 : false
78+ withAWS : false
7979 - scenario : on macos
8080 runs-on : macos-14
8181 os : darwin
8282 instrumented : false
8383 primary : true
8484 stdenv : stdenv
85- withCurlS3 : true
85+ withAWS : true
8686 - scenario : on ubuntu (with sanitizers / coverage)
8787 runs-on : ubuntu-24.04
8888 os : linux
8989 instrumented : true
9090 primary : false
9191 stdenv : clangStdenv
92- withCurlS3 : true
92+ withAWS : true
9393 name : tests ${{ matrix.scenario }}
9494 runs-on : ${{ matrix.runs-on }}
9595 timeout-minutes : 60
@@ -113,13 +113,13 @@ jobs:
113113 nix build --file ci/gha/tests/wrapper.nix componentTests -L \
114114 --arg withInstrumentation ${{ matrix.instrumented }} \
115115 --argstr stdenv "${{ matrix.stdenv }}" \
116- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3 ) }}
116+ ${{ format('--arg withAWS {0}', matrix.withAWS ) }}
117117 - name : Run VM tests
118118 run : |
119119 nix build --file ci/gha/tests/wrapper.nix vmTests -L \
120120 --arg withInstrumentation ${{ matrix.instrumented }} \
121121 --argstr stdenv "${{ matrix.stdenv }}" \
122- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3 ) }}
122+ ${{ format('--arg withAWS {0}', matrix.withAWS ) }}
123123 if : ${{ matrix.os == 'linux' }}
124124 - name : Run flake checks and prepare the installer tarball
125125 run : |
@@ -131,7 +131,7 @@ jobs:
131131 nix build --file ci/gha/tests/wrapper.nix codeCoverage.coverageReports -L \
132132 --arg withInstrumentation ${{ matrix.instrumented }} \
133133 --argstr stdenv "${{ matrix.stdenv }}" \
134- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3 ) }} \
134+ ${{ format('--arg withAWS {0}', matrix.withAWS ) }} \
135135 --out-link coverage-reports
136136 cat coverage-reports/index.txt >> $GITHUB_STEP_SUMMARY
137137 if : ${{ matrix.instrumented }}
0 commit comments