forked from jsk-ros-pkg/jsk_control
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix CI, override node20 actions/upload-artifact#616 (comment)
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,11 @@ jobs: | |
CONTAINER: ubuntu:20.04 | ||
# BUILD_PKGS: cmd_vel_smoother contact_states_observer joy_mouse jsk_teleop_joy | ||
|
||
container: ${{ matrix.CONTAINER }} | ||
container: | ||
image: ${{ matrix.CONTAINER }} | ||
volumes: | ||
- ${{ runner.temp }}:/__e/node20 | ||
|
||
steps: | ||
- name: Install latest git ( use sudo for ros-ubuntu ) | ||
run: | | ||
|
@@ -48,6 +52,18 @@ jobs: | |
git config --global --add safe.directory $GITHUB_WORKSPACE | ||
fi | ||
- name: Try to replace `node` with an glibc 2.17 | ||
shell: bash | ||
run: | | ||
ls -lar /__e/node20 && | ||
sudo apt-get install -y curl && | ||
curl -Lo /tmp/node.tar.gz https://unofficial-builds.nodejs.org/download/release/v20.17.0/node-v20.17.0-linux-x64-glibc-217.tar.gz && | ||
cd /__e/node20 && | ||
tar -x --strip-components=1 -f /tmp/node.tar.gz | ||
- name: install system nodejs for pos job cleanup | ||
shell: bash | ||
run: | | ||
sudo apt-get install -y nodejs | ||
- name: Chcekout | ||
uses: actions/[email protected] | ||
|
||
|
Submodule .travis
updated
24 files
+4 −4 | .github/workflows/generate_action_config.py | |
+10 −4 | .github/workflows/indigo.yml | |
+10 −4 | .github/workflows/kinetic.yml | |
+38 −24 | .github/workflows/main.yml | |
+10 −4 | .github/workflows/melodic.yml | |
+10 −4 | .github/workflows/noetic.yml | |
+1 −1 | .github/workflows/python2.yml | |
+1 −1 | .github/workflows/python3.yml | |
+3 −2 | .travis.yml | |
+0 −0 | CATKIN_IGNORE | |
+41 −0 | CHANGELOG.rst | |
+5 −1 | action.yml | |
+1 −1 | docker/Dockerfile.ros-ubuntu:14.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:14.04-pcl1.8 | |
+1 −1 | docker/Dockerfile.ros-ubuntu:16.04 | |
+1 −1 | docker/Dockerfile.ros-ubuntu:16.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:18.04 | |
+1 −1 | docker/Dockerfile.ros-ubuntu:18.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:20.04-pcl | |
+1 −1 | package.xml | |
+12 −0 | rosdep_snapshots/30-bionic.list | |
+12 −0 | rosdep_snapshots/30-xenial.list | |
+9 −3 | travis.sh | |
+11 −1 | travis_jenkins.py |