mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-20 14:23:08 +01:00
Use v12 docker build images
This commit is contained in:
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
@@ -123,7 +123,7 @@ jobs:
|
|||||||
name: Windows (${{ matrix.platform_name }}) using mingw
|
name: Windows (${{ matrix.platform_name }}) using mingw
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code-formatting
|
needs: check-code-formatting
|
||||||
container: openrct2/openrct2-build:11-mingw
|
container: openrct2/openrct2-build:12-mingw
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@@ -276,19 +276,19 @@ jobs:
|
|||||||
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments" -DWITH_TESTS=off -DDISABLE_FLAC=ON -DDISABLE_VORBIS=ON
|
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments" -DWITH_TESTS=off -DDISABLE_FLAC=ON -DDISABLE_VORBIS=ON
|
||||||
- platform: x86_64
|
- platform: x86_64
|
||||||
distro: focal
|
distro: focal
|
||||||
image: openrct2/openrct2-build:11-focal
|
image: openrct2/openrct2-build:12-focal
|
||||||
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g1 -gz" -DWITH_TESTS=off
|
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g1 -gz" -DWITH_TESTS=off
|
||||||
- platform: x86_64
|
- platform: x86_64
|
||||||
distro: jammy
|
distro: jammy
|
||||||
image: openrct2/openrct2-build:11-jammy
|
image: openrct2/openrct2-build:12-jammy
|
||||||
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments"
|
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments"
|
||||||
- platform: x86_64
|
- platform: x86_64
|
||||||
distro: bullseye
|
distro: bullseye
|
||||||
image: openrct2/openrct2-build:11-bullseye
|
image: openrct2/openrct2-build:12-bullseye
|
||||||
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments" -DWITH_TESTS=off
|
build_flags: -DCMAKE_POSITION_INDEPENDENT_CODE=on -DCMAKE_CXX_FLAGS="-g -gz -fno-var-tracking-assignments" -DWITH_TESTS=off
|
||||||
- platform: i686
|
- platform: i686
|
||||||
distro: focal
|
distro: focal
|
||||||
image: openrct2/openrct2-build:11-focal32
|
image: openrct2/openrct2-build:12-focal32
|
||||||
build_flags: -DFORCE32=ON -DENABLE_SCRIPTING=OFF -DCMAKE_CXX_FLAGS="-m32 -g1 -gz" -DWITH_TESTS=off
|
build_flags: -DFORCE32=ON -DENABLE_SCRIPTING=OFF -DCMAKE_CXX_FLAGS="-m32 -g1 -gz" -DWITH_TESTS=off
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -327,7 +327,7 @@ jobs:
|
|||||||
name: Linux (x86_64, AppImage)
|
name: Linux (x86_64, AppImage)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code-formatting
|
needs: check-code-formatting
|
||||||
container: openrct2/openrct2-build:11-focal
|
container: openrct2/openrct2-build:12-focal
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -385,7 +385,7 @@ jobs:
|
|||||||
name: Linux (Debug, [http, network, flac, vorbis OpenGL] disabled) using clang
|
name: Linux (Debug, [http, network, flac, vorbis OpenGL] disabled) using clang
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code-formatting
|
needs: check-code-formatting
|
||||||
container: openrct2/openrct2-build:11-jammy
|
container: openrct2/openrct2-build:12-jammy
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -401,7 +401,7 @@ jobs:
|
|||||||
name: Linux (Debug) using clang, coverage enabled
|
name: Linux (Debug) using clang, coverage enabled
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code-formatting
|
needs: check-code-formatting
|
||||||
container: openrct2/openrct2-build:11-jammy
|
container: openrct2/openrct2-build:12-jammy
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -442,7 +442,7 @@ jobs:
|
|||||||
name: Android
|
name: Android
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code-formatting
|
needs: check-code-formatting
|
||||||
container: openrct2/openrct2-build:11-android
|
container: openrct2/openrct2-build:12-android
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|||||||
Reference in New Issue
Block a user