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 77430afCopy full SHA for 77430af
.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
+ python ./private/upgrade_cmake_externals.py | tee output.log
72
+ output="$(cat output.log)"
73
+ if [[ -n "$(echo $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