Skip to content

Commit eaf3485

Browse files
Lucky thirteenth try fixing CI/CD; remove swift
1 parent 4bbd96d commit eaf3485

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/actions/install-codeql-packs/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ inputs:
1212
The `--mode` option to `codeql pack install`.
1313
required: true
1414
default: verify
15+
16+
language:
17+
description: |
18+
The language of the CodeQL library pack to install.
19+
required: false
20+
default: common
1521

1622
runs:
1723
using: composite
@@ -22,4 +28,4 @@ runs:
2228
CODEQL_CLI: ${{ inputs.cli_path }}
2329
run: |
2430
PATH=$PATH:$CODEQL_CLI
25-
python .github/scripts/install-packs.py --mode ${{ inputs.mode }}
31+
python .github/scripts/install-packs.py --mode ${{ inputs.mode }} --language ${{ inputs.language }}

.github/workflows/codeql-unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
language: [ 'common', 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
16+
language: [ 'common', 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
1717

1818
steps:
1919
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)