We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91210de commit 53b32a0Copy full SHA for 53b32a0
.github/workflows/ci.yml
@@ -58,3 +58,20 @@ jobs:
58
run: |
59
pip install ruamel.yaml
60
python ./private/test/file_sync_test.py
61
+ check_cmake_deps:
62
+ name: sync drake_cmake_external deps
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - name: checkout
66
+ uses: actions/checkout@v5
67
+ - name: setup
68
+ uses: actions/setup-python@v6
69
+ - name: upgrade test
70
+ run: |
71
+ output="$(python ./private/upgrade_cmake_externals.py 2>&1)"
72
+ printf "%s\n" "$output"
73
+ if [[ -n "$output" ]]; then
74
+ echo "Check Drake for possible upgrades to drake_cmake_external dependencies."
75
+ exit 1
76
+ fi
77
+ shell: bash
0 commit comments