Skip to content

Commit

Permalink
Exclude duplicate abicheckers and add a test for it
Browse files Browse the repository at this point in the history
Mostly libs duplicated from Garden in Harmonic.

Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Oct 16, 2023
1 parent 8afedfc commit d996eb9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ jobs:
mkdir /tmp/current_xml_configuration && mkdir /tmp/current_log_generated/
mv *.xml /tmp/current_xml_configuration/
mv *.txt /tmp/current_log_generated/ || true
- name: Check single abichecker jobs
if: steps.dsl_check.outputs.run_job == 'true'
run: |
if [[ -n $( grep '\<branch>' *abichecker*.xml | awk '{ print $2 }' | sort | uniq -d ) ]]; then
echo "found a duplicate in an abichecker branch (see above this line)."
echo "please exclude one of the versions in the yaml file to reduce the server workload"
exit 1
fi
- name: Generating diffs
if: steps.dsl_check.outputs.run_job == 'true'
run: |
Expand Down
4 changes: 4 additions & 0 deletions jenkins-scripts/dsl/gz-collections.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,10 @@ ci_configs:
abichecker:
- gz-cmake
- gz-tools
# These have a Jammy counterpart in Harmonic
- gz-math
- gz-plugin
- gz-utils
pre_setup_script_hook:
ign-physics:
- "export MAKE_JOBS=1"
Expand Down

0 comments on commit d996eb9

Please sign in to comment.