Skip to content

Commit 3489f83

Browse files
committed
Use ubuntu 20.04 instead of 18.04
1 parent 0bf4831 commit 3489f83

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Run build
100100
run: bash ci/fedora-buildgen.sh
101101
build-ubuntu-bionic:
102-
name: Build (Ubuntu 18.04 LTS)
102+
name: Build (Ubuntu 20.04 LTS)
103103
needs: pre_job
104104
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
105105
runs-on: ubuntu-latest
@@ -109,4 +109,4 @@ jobs:
109109
- name: Checkout submodules
110110
run: git submodule update --init --recursive
111111
- name: Run build
112-
run: bash ci/ubuntu-bionic-buildgen.sh
112+
run: bash ci/ubuntu-focal-buildgen.sh

ci/ubuntu-bionic-buildgen.sh ci/ubuntu-focal-buildgen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ IFS=$'\n\t'
77

88
set -x
99

10-
docker build -t odamex -f ci/ubuntu-bionic.Dockerfile .
10+
docker build -t odamex -f ci/ubuntu-focal.Dockerfile .
1111
docker run --rm odamex

ci/ubuntu-bionic.Dockerfile ci/ubuntu-focal.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:20.04
22

33
WORKDIR odamex
44

0 commit comments

Comments
 (0)