Skip to content

Commit d2724ff

Browse files
author
Minggang Wang
committed
Replace the last successful ROS2 packages with the last stable ones for CIs
Fix #535
1 parent f2f6a68 commit d2724ff

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- run: brew install openssl
2626
- run: brew install asio console_bridge
2727
- run: python3 -m pip install catkin_pkg empy git+https://github.com/lark-parser/[email protected] pyparsing pyyaml setuptools argcomplete colcon-common-extensions numpy
28-
- run: mkdir -p ~/ros2_install && cd ~/ros2_install && wget https://ci.ros2.org/view/packaging/job/packaging_osx/lastSuccessfulBuild/artifact/ws/ros2-package-osx-x86_64.tar.bz2 && tar xf ros2-package-osx-x86_64.tar.bz2
28+
- run: mkdir -p ~/ros2_install && cd ~/ros2_install && wget https://ci.ros2.org/view/packaging/job/packaging_osx/lastStableBuild/artifact/ws/ros2-package-osx-x86_64.tar.bz2 && tar xf ros2-package-osx-x86_64.tar.bz2
2929
- run: wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
3030
- run: echo "source $HOME/.bashrc" >> ~/.bash_profile
3131
- run: cat ~/.bash_profile

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN git config --global user.name $GIT_USER_NAME \
3232
ENV ROS2_WS=/root
3333
WORKDIR $ROS2_WS
3434

35-
RUN wget https://ci.ros2.org/view/packaging/job/packaging_linux/lastSuccessfulBuild/artifact/ws/ros2-package-linux-x86_64.tar.bz2 \
35+
RUN wget https://ci.ros2.org/view/packaging/job/packaging_linux/lastStableBuild/artifact/ws/ros2-package-linux-x86_64.tar.bz2 \
3636
&& tar xf ros2-package-linux-x86_64.tar.bz2
3737

3838
# [Ubuntu 18.04]

appveyor.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,21 @@ before_build:
2121
- cd download
2222
- choco install -y wget cmake
2323
- "SET PATH=C:\\Program Files\\CMake\\bin;%PATH%"
24-
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2018-06-12-1/asio.1.12.1.nupkg
25-
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2018-06-12-1/eigen.3.3.4.nupkg
26-
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2017-04-04-1/tinyxml-usestl.2.6.2.nupkg
27-
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2018-06-12-1/tinyxml2.6.0.0.nupkg
28-
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-02-15-1/log4cxx.0.10.0.nupkg
29-
- choco install -y -s c:\download\ asio eigen tinyxml-usestl tinyxml2 log4cxx
30-
- appveyor DownloadFile http://ci.ros2.org/view/packaging/job/packaging_windows/lastSuccessfulBuild/artifact/ws/ros2-package-windows-AMD64.zip
24+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/asio.1.12.1.nupkg
25+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/cunit.2.1.3.nupkg
26+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/eigen.3.3.4.nupkg
27+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/tinyxml-usestl.2.6.2.nupkg
28+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/tinyxml2.6.0.0.nupkg
29+
- appveyor DownloadFile https://github.com/ros2/choco-packages/releases/download/2019-10-24/log4cxx.0.10.0.nupkg
30+
- choco install -y -s c:\download\ asio cunit eigen tinyxml-usestl tinyxml2 log4cxx
31+
- appveyor DownloadFile http://ci.ros2.org/view/packaging/job/packaging_windows/lastStableBuild/artifact/ws/ros2-package-windows-AMD64.zip
3132
- 7z x -y "c:\download\ros2-package-windows-AMD64.zip" -o"c:\" > nul
3233
- setx -m OPENSSL_CONF C:\OpenSSL-Win64\bin\openssl.cfg
3334
- set PATH=C:\OpenSSL-Win64\bin;%PATH%
3435
- setx AMENT_PYTHON_EXECUTABLE "c:\Python37"
3536
- refreshenv
3637
- "SET PATH=%PYTHON3%;%PYTHON3%\\bin;%PYTHON3%\\Scripts;%PATH%"
37-
- python -m pip install -U catkin_pkg empy lark-parser lxml numpy opencv-python pyparsing pyyaml setuptools colcon-common-extensions numpy
38+
- python -m pip install -U catkin_pkg empy lark-parser lxml opencv-python pyparsing pyyaml setuptools colcon-common-extensions numpy
3839

3940
build_script:
4041
- cd c:\proj\rclnodejs

src/third_party/spdlog

Submodule spdlog updated 190 files

test/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function assertThrowsError(operation, errors, errMsg, message) {
4747
function launchPythonProcess(cmdline) {
4848
var pythonProcess = null;
4949
if (os.platform() === 'win32') {
50-
cmdline.unshift('-3');
50+
cmdline.unshift('-3.7');
5151
pythonProcess = childProcess.spawn('py', cmdline);
5252
} else {
5353
pythonProcess = childProcess.spawn('python3', cmdline);

0 commit comments

Comments
 (0)