Skip to content

Commit e907a39

Browse files
committed
[ci] Update node version in Github CI
1 parent 9b49579 commit e907a39

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,22 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-16.04
8+
runs-on: ubuntu-20.04
99

1010
strategy:
1111
matrix:
12-
node-version: [8.x, 10.x]
12+
node-version: [12.x]
1313

1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}
1717
uses: actions/setup-node@v1
1818
with:
1919
node-version: ${{ matrix.node-version }}
20+
- run: sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
21+
- run: wget https://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
2022
- run: sudo apt update
21-
- run: sudo apt install -y libjansson-dev libboost-dev imagemagick libtinyxml-dev git cmake build-essential wget libgazebo7-dev
23+
- run: sudo apt install -y libjansson-dev libboost-dev imagemagick libtinyxml-dev git cmake build-essential wget libgazebo11-dev
2224
- run: sudo npm install -g grunt
2325
# - run: sudo bash -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/chrome.list'
2426
# - run: sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

0 commit comments

Comments
 (0)