mirror of https://github.com/openXC7/prjxray.git
ci/Pipeline: use ubuntu:focal instead of ubuntu:bionic (#1992)
This commit is contained in:
commit
7bc0a0621a
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
|
||||
|
||||
BuildDatabase:
|
||||
container: ubuntu:bionic
|
||||
container: ubuntu:focal
|
||||
|
||||
runs-on: [self-hosted, Linux, X64]
|
||||
|
||||
|
|
@ -29,10 +29,10 @@ jobs:
|
|||
|
||||
- name: Install
|
||||
run: |
|
||||
apt update
|
||||
apt install -y \
|
||||
DEBIAN_FRONTEND=noninteractive apt update -qq
|
||||
DEBIAN_FRONTEND=noninteractive apt install -qq -y \
|
||||
bash bison build-essential ca-certificates clang-format cmake psmisc \
|
||||
colordiff coreutils git flex python3 python3-dev python3-venv xsltproc
|
||||
colordiff coreutils git flex python3 python3-dev python3-venv xsltproc libtinfo5
|
||||
|
||||
- name: Build
|
||||
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
||||
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
|
||||
|
||||
Tests:
|
||||
container: ubuntu:bionic
|
||||
container: ubuntu:focal
|
||||
|
||||
runs-on: [self-hosted, Linux, X64]
|
||||
|
||||
|
|
@ -76,10 +76,10 @@ jobs:
|
|||
|
||||
- name: Install
|
||||
run: |
|
||||
apt update
|
||||
apt install -y \
|
||||
DEBIAN_FRONTEND=noninteractive apt update -qq
|
||||
DEBIAN_FRONTEND=noninteractive apt install -qq -y \
|
||||
bash bison build-essential ca-certificates clang-format cmake psmisc \
|
||||
colordiff coreutils git flex python3 python3-dev python3-venv xsltproc
|
||||
colordiff coreutils git flex python3 python3-dev python3-venv xsltproc libtinfo5
|
||||
|
||||
- name: Build
|
||||
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
||||
|
|
|
|||
Loading…
Reference in New Issue