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:
|
BuildDatabase:
|
||||||
container: ubuntu:bionic
|
container: ubuntu:focal
|
||||||
|
|
||||||
runs-on: [self-hosted, Linux, X64]
|
runs-on: [self-hosted, Linux, X64]
|
||||||
|
|
||||||
|
|
@ -29,10 +29,10 @@ jobs:
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: |
|
run: |
|
||||||
apt update
|
DEBIAN_FRONTEND=noninteractive apt update -qq
|
||||||
apt install -y \
|
DEBIAN_FRONTEND=noninteractive apt install -qq -y \
|
||||||
bash bison build-essential ca-certificates clang-format cmake psmisc \
|
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
|
- name: Build
|
||||||
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
||||||
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
Tests:
|
Tests:
|
||||||
container: ubuntu:bionic
|
container: ubuntu:focal
|
||||||
|
|
||||||
runs-on: [self-hosted, Linux, X64]
|
runs-on: [self-hosted, Linux, X64]
|
||||||
|
|
||||||
|
|
@ -76,10 +76,10 @@ jobs:
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: |
|
run: |
|
||||||
apt update
|
DEBIAN_FRONTEND=noninteractive apt update -qq
|
||||||
apt install -y \
|
DEBIAN_FRONTEND=noninteractive apt install -qq -y \
|
||||||
bash bison build-essential ca-certificates clang-format cmake psmisc \
|
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
|
- name: Build
|
||||||
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
run: make build --output-sync=target --warn-undefined-variables -j$(nproc)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue