ci: Update to ubuntu20.04
This commit is contained in:
parent
64faa6948b
commit
6ffe17fb13
|
@ -13,7 +13,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -29,8 +29,10 @@ jobs:
|
||||||
if: matrix.target-hardware == 'esp8266'
|
if: matrix.target-hardware == 'esp8266'
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y gcc git wget make libncurses-dev flex bison python python-setuptools python-serial ninja-build
|
sudo apt install -y gcc git wget make libncurses-dev flex bison python python-setuptools python3-serial ninja-build
|
||||||
wget https://dl.espressif.com/dl/xtensa-lx106-elf-linux64-1.22.0-100-ge567ec7-5.2.0.tar.gz
|
wget https://dl.espressif.com/dl/xtensa-lx106-elf-linux64-1.22.0-100-ge567ec7-5.2.0.tar.gz
|
||||||
|
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
|
||||||
|
python get-pip.py
|
||||||
|
|
||||||
- name: install
|
- name: install
|
||||||
if: matrix.target-hardware == 'esp8266'
|
if: matrix.target-hardware == 'esp8266'
|
||||||
|
|
Loading…
Reference in New Issue