Skip to content

Commit d0e358e

Browse files
committed
Revert "Download zstd nightly bundles in PR checks"
This reverts commit e621ea8.
1 parent 0edd5e8 commit d0e358e

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

.github/actions/prepare-test/action.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,14 @@ runs:
3232
run: |
3333
set -e # Fail this Action if `gh release list` fails.
3434
35-
if [[ ${{ inputs.version }} == "nightly-latest" ]]; then
36-
extension="tar.zst"
37-
else
38-
extension="tar.gz"
39-
fi
40-
4135
if [[ ${{ inputs.use-all-platform-bundle }} == "true" ]]; then
42-
artifact_name="codeql-bundle.$extension"
36+
artifact_name="codeql-bundle.tar.gz"
4337
elif [[ "$RUNNER_OS" == "Linux" ]]; then
44-
artifact_name="codeql-bundle-linux64.$extension"
38+
artifact_name="codeql-bundle-linux64.tar.gz"
4539
elif [[ "$RUNNER_OS" == "macOS" ]]; then
46-
artifact_name="codeql-bundle-osx64.$extension"
40+
artifact_name="codeql-bundle-osx64.tar.gz"
4741
elif [[ "$RUNNER_OS" == "Windows" ]]; then
48-
artifact_name="codeql-bundle-win64.$extension"
42+
artifact_name="codeql-bundle-win64.tar.gz"
4943
else
5044
echo "::error::Unrecognized OS $RUNNER_OS"
5145
exit 1

.github/workflows/__test-local-codeql.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/test-local-codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ steps:
1414
with:
1515
# Swift is not supported on Ubuntu so we manually exclude it from the list here
1616
languages: cpp,csharp,go,java,javascript,python,ruby
17-
tools: ./codeql-bundle-linux64.tar.zst
17+
tools: ./codeql-bundle-linux64.tar.gz
1818
- name: Build code
1919
shell: bash
2020
run: ./build.sh

0 commit comments

Comments
 (0)