common: Fix ubuntu version in build test

github action started updating to ubuntu20.04 for ubuntu-latest.
So fix Ubuntu version 18.04 as we are not ready enough to test for 20.04 yet.
This commit is contained in:
JunsuChoi 2021-02-19 14:22:47 +09:00 committed by Hermet Park
parent f1fd23cf32
commit 2657acc1bc

View file

@ -7,11 +7,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: false
submodules: true
- name: Install Packages
run: |
@ -25,17 +25,16 @@ jobs:
sudo ninja -C . install
example_build:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: false
submodules: true
- name: Install Packages
run: |
sudo apt-get update
sudo add-apt-repository ppa:niko2040/e19
sudo apt-get update
sudo apt-get install ninja-build gcc-multilib g++-multilib meson
sudo apt-get install libefl-dev
@ -46,11 +45,11 @@ jobs:
sudo ninja -C . install
test_build:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: false
submodules: true
- name: Install Packages
run: |