8000 Switch `debug-artifacts` job back to `ubuntu` · github/codeql-action@62fb0a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 62fb0a9

Browse files
committed
Switch debug-artifacts job back to ubuntu
Now that CLI v2.17.4+ are available, we can switch this job back to `ubuntu`. As a result, we can also bring back testing on the older CLI versions (which did not work on MacOS). This change is orthogonal to the PR check generator change as the check doesn't use the generator.
1 parent 495201e commit 62fb0a9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/debug-artifacts.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
version:
25-
# TODO: Once CLI v2.17.4 is available and the platform is switched back to ubuntu,
26-
# stable-20230403, stable-v2.13.5, and stable-v2.14.6 can be added back to this matrix,
27-
# and the VERSIONS variable in the bash script below.
28-
# Prior to CLI v2.15.1, ARM runners were not supported by the build tracer.
25+
- stable-20230403
26+
- stable-v2.13.5
27+
- stable-v2.14.6
2928
- stable-v2.15.5
3029
- stable-v2.16.6
3130
- default
@@ -35,7 +34,7 @@ jobs:
3534
env:
3635
CODEQL_ACTION_TEST_MODE: true
3736
timeout-minutes: 45
38-
runs-on: macos-latest # TODO: Switch back to ubuntu for `nightly-latest` and `linked` once CLI v2.17.4 is available.
37+
runs-on: ubuntu-latest
3938
steps:
4039
- name: Check out repository
4140
uses: actions/checkout@v4
@@ -73,7 +72,7 @@ jobs:
7372
- name: Check expected artifacts exist
7473
shell: bash
7574
run: |
76-
VERSIONS="stable-v2.15.5 stable-v2.16.6 default linked nightly-latest"
75+
VERSIONS="stable-20230403 stable-v2.13.5 stable-v2.14.6 stable-v2.15.5 stable-v2.16.6 default linked nightly-latest"
7776
LANGUAGES="cpp csharp go java javascript python"
7877
for version in $VERSIONS; do
7978
pushd "./my-debug-artifacts-${version//./}"

0 commit comments

Comments
 (0)
0