We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7531ac commit a52a968Copy full SHA for a52a968
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
7
jobs:
8
test:
9
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-20.04
10
strategy:
11
fail-fast: false
12
matrix:
@@ -215,7 +215,10 @@ jobs:
215
shell: bash -eo pipefail -l {0}
216
run: |
217
if [[ "${{ matrix.node-version }}" == 0.6* ]]; then
218
- sudo apt-get install g++-4.8 gcc-4.8 libssl1.0-dev
+ sudo sh -c 'echo "deb http://us.archive.ubuntu.com/ubuntu/ bionic universe" >> /etc/apt/sources.list'
219
+ sudo sh -c 'echo "deb http://security.ubuntu.com/ubuntu bionic-security main" >> /etc/apt/sources.list'
220
+ sudo apt-get update
221
+ sudo apt-get install g++-4.8 gcc-4.8 libssl1.0-dev python2 python-is-python2
222
export CC=/usr/bin/gcc-4.8
223
export CXX=/usr/bin/g++-4.8
224
fi
0 commit comments