Skip to content

Commit

Permalink
Bump ROS setup and install SBT
Browse files Browse the repository at this point in the history
  • Loading branch information
byeonggiljun committed Jan 17, 2025
1 parent 6ac1e5d commit 04a7b65
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup-ros2/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ runs:
# see https://github.com/ros-tooling/setup-ros/issues/80 and https://github.com/ros2/rmw_cyclonedds/pull/134
run: sed -e 's/azure.archive.ubuntu.com/us.archive.ubuntu.com/g' -e t -e d /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/nonazure.list
- name: Setup ROS2
uses: ros-tooling/[email protected].0
uses: ros-tooling/[email protected].9
with:
required-ros-distributions: rolling
9 changes: 9 additions & 0 deletions .github/workflows/c-verifier-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ jobs:
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/z3/bin/" >> $GITHUB_ENV
- name: Print Z3 Version
run: z3 --version
- name: Install SBT
run: |
sudo apt-get update
sudo apt-get install -y default-jdk
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add
sudo apt-get update
sudo apt-get install -y sbt
- name: Install Uclid5
working-directory: uclid/
run: |
Expand Down

0 comments on commit 04a7b65

Please sign in to comment.