6868 primary : true
6969 stdenv : stdenv
7070 withAWS : true
71- withCurlS3 : false
7271 # TODO: remove once curl-based-s3 fully lands
7372 - scenario : on ubuntu (no s3)
7473 runs-on : ubuntu-24.04
@@ -77,32 +76,20 @@ jobs:
7776 primary : false
7877 stdenv : stdenv
7978 withAWS : false
80- withCurlS3 : false
81- # TODO: remove once curl-based-s3 fully lands
82- - scenario : on ubuntu (curl s3)
83- runs-on : ubuntu-24.04
84- os : linux
85- instrumented : false
86- primary : false
87- stdenv : stdenv
88- withAWS : false
89- withCurlS3 : true
9079 - scenario : on macos
9180 runs-on : macos-14
9281 os : darwin
9382 instrumented : false
9483 primary : true
9584 stdenv : stdenv
9685 withAWS : true
97- withCurlS3 : false
9886 - scenario : on ubuntu (with sanitizers / coverage)
9987 runs-on : ubuntu-24.04
10088 os : linux
10189 instrumented : true
10290 primary : false
10391 stdenv : clangStdenv
10492 withAWS : true
105- withCurlS3 : false
10693 name : tests ${{ matrix.scenario }}
10794 runs-on : ${{ matrix.runs-on }}
10895 timeout-minutes : 60
@@ -126,15 +113,13 @@ jobs:
126113 nix build --file ci/gha/tests/wrapper.nix componentTests -L \
127114 --arg withInstrumentation ${{ matrix.instrumented }} \
128115 --argstr stdenv "${{ matrix.stdenv }}" \
129- ${{ format('--arg withAWS {0}', matrix.withAWS) }} \
130- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3) }}
116+ ${{ format('--arg withAWS {0}', matrix.withAWS) }}
131117 - name : Run VM tests
132118 run : |
133119 nix build --file ci/gha/tests/wrapper.nix vmTests -L \
134120 --arg withInstrumentation ${{ matrix.instrumented }} \
135121 --argstr stdenv "${{ matrix.stdenv }}" \
136- ${{ format('--arg withAWS {0}', matrix.withAWS) }} \
137- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3) }}
122+ ${{ format('--arg withAWS {0}', matrix.withAWS) }}
138123 if : ${{ matrix.os == 'linux' }}
139124 - name : Run flake checks and prepare the installer tarball
140125 run : |
@@ -147,7 +132,6 @@ jobs:
147132 --arg withInstrumentation ${{ matrix.instrumented }} \
148133 --argstr stdenv "${{ matrix.stdenv }}" \
149134 ${{ format('--arg withAWS {0}', matrix.withAWS) }} \
150- ${{ format('--arg withCurlS3 {0}', matrix.withCurlS3) }} \
151135 --out-link coverage-reports
152136 cat coverage-reports/index.txt >> $GITHUB_STEP_SUMMARY
153137 if : ${{ matrix.instrumented }}
0 commit comments