Skip to content

Commit 3b8b03b

Browse files
committed
reduced to one lib to test
1 parent 81b19b6 commit 3b8b03b

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

integration_test.sh

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ CODEQL_URL="https://github.com/github/codeql-cli-binaries/releases/download/${CO
2828
# maybe move this to known_good.json or a config file later
2929
declare -A BUILD_TARGET_GROUPS=(
3030
[score_baselibs]="@score_baselibs//score/..."
31-
[score_communication]="@score_communication//score/mw/com:com"
32-
[score_persistency]="@score_persistency//src/cpp/src/... @score_persistency//src/rust/..."
31+
#[score_communication]="@score_communication//score/mw/com:com"
32+
#[score_persistency]="@score_persistency//src/cpp/src/... @score_persistency//src/rust/..."
3333
#[score_logging]="@score_logging//src/..."
34-
[score_orchestrator]="@score_orchestrator//src/..."
35-
[score_test_scenarios]="@score_test_scenarios//..."
36-
[score_feo]="@score_feo//..."
34+
#[score_orchestrator]="@score_orchestrator//src/..."
35+
#[score_test_scenarios]="@score_test_scenarios//..."
36+
#[score_feo]="@score_feo//..."
3737
)
3838

3939

@@ -171,19 +171,17 @@ for group in "${!BUILD_TARGET_GROUPS[@]}"; do
171171
set +e
172172

173173
build_command="bazel --output_base=\\\"${current_bazel_output_base}\\\" build \
174-
--config '${CONFIG}' \
175174
${targets} \
176175
--verbose_failures \
177-
--spawn_strategy=local \
176+
--spawn_strategy=standalone \
178177
--nouse_action_cache \
179178
--noremote_accept_cached \
180179
--noremote_upload_local_results \
181-
--disk_cache= \
182-
2>&1 | tee \\\"${log_file}\\\""
180+
--disk_cache= ${targets}"
183181

184182
codeql database create "${db_path}" \
185183
--language="${CODEQL_LANGUAGE}" \
186-
--command="bash -c \"${build_command}\"" \
184+
--command="${build_command}" \
187185
--overwrite \
188186
|| { echo "CodeQL database creation failed for ${group}"; exit 1; }
189187

0 commit comments

Comments
 (0)