Compare commits

...

12 Commits

Author SHA1 Message Date
Calum Grant
2991069649 Add layering_check flag 2024-03-27 10:59:55 +00:00
Calum Grant
dcd8589967 Test 2024-03-26 13:20:59 +00:00
Calum Grant
dcc95bb860 Test 2024-03-26 13:05:01 +00:00
Calum Grant
0dd05ba854 Update abseil bazel modules 2024-03-26 11:55:44 +00:00
Calum Grant
17ec5211c4 Tweak build command 2024-03-26 11:42:44 +00:00
Calum Grant
7ea1191f5d Use recommended Bazel flags 2024-03-26 11:30:33 +00:00
Calum Grant
57eb6c13ed Fix typo 2024-03-26 11:23:59 +00:00
Calum Grant
b26acadc49 Set spawn-strategy=local 2024-03-26 11:18:50 +00:00
Calum Grant
c1a281f183 Tweak codeal-analysis.yml 2024-03-26 10:55:20 +00:00
Calum Grant
5a8af8b533 Update codeql-analysis.yml 2024-03-25 15:46:21 +00:00
Calum Grant
87fdf5f98f Update codeql-analysis.yml 2024-03-25 13:44:43 +00:00
Calum Grant
0775b78275 Compile Swift extractor 2024-03-25 12:35:15 +00:00
2 changed files with 15 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ jobs:
uses: github/codeql-action/init@main
# Override language selection by uncommenting this and choosing your languages
with:
languages: csharp
languages: csharp, cpp
config-file: ./.github/codeql/codeql-config.yml
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
@@ -57,6 +57,19 @@ jobs:
- run: |
dotnet build csharp
- name: "[Ubuntu] Remove GCC 13 from runner image"
shell: bash
run: |
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
sudo apt-get update
sudo apt-get install -y --allow-downgrades libc6=2.35-* libc6-dev=2.35-* libstdc++6=12.3.0-* libgcc-s1=12.3.0-*
- name: "Build Swift extractor using Bazel"
run: |
bazel clean --expunge
bazel run //swift:create-extractor-pack --nouse_action_cache --noremote_accept_cached --noremote_upload_local_results --spawn_strategy=local --features=-layering_check
bazel shutdown
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@main

View File

@@ -18,7 +18,7 @@ bazel_dep(name = "rules_pkg", version = "0.9.1")
bazel_dep(name = "rules_nodejs", version = "6.0.3")
bazel_dep(name = "rules_python", version = "0.31.0")
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "abseil-cpp", version = "20240116.0", repo_name = "absl")
bazel_dep(name = "abseil-cpp", version = "20240116.1", repo_name = "absl")
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "json")
bazel_dep(name = "fmt", version = "10.0.0")