mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
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:
parent
f1fd23cf32
commit
2657acc1bc
1 changed files with 6 additions and 7 deletions
13
.github/workflows/actions.yml
vendored
13
.github/workflows/actions.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Add table
Reference in a new issue