Changeset - r28357:3c08572ba8e3
[Not reviewed]
master
0 3 0
Patric Stout - 11 months ago 2023-12-30 16:55:31
truebrain@openttd.org
Change: [CI] always use "latest" image for our runners
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
.github/workflows/ci-build.yml
Show inline comments
 
@@ -96,13 +96,13 @@ jobs:
 
          libraries: grfcodec
 
          extra-cmake-parameters: -DOPTION_DEDICATED=ON -DCMAKE_CXX_FLAGS_INIT="-DRANDOM_DEBUG" -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON
 
          # Compile without SDL / SDL2, as that should compile fine too.
 

	
 
    name: Linux (${{ matrix.name }})
 

	
 
    runs-on: ubuntu-20.04
 
    runs-on: ubuntu-latest
 
    env:
 
      CC: ${{ matrix.compiler }}
 
      CXX: ${{ matrix.cxxcompiler }}
 

	
 
    steps:
 
    - name: Checkout
.github/workflows/release-linux.yml
Show inline comments
 
@@ -9,13 +9,13 @@ on:
 
        default: ""
 

	
 
jobs:
 
  linux:
 
    name: Linux (Generic)
 

	
 
    runs-on: ubuntu-20.04
 
    runs-on: ubuntu-latest
 
    container:
 
      # manylinux2014 is based on CentOS 7, but already has a lot of things
 
      # installed and preconfigured. It makes it easier to build OpenTTD.
 
      image: quay.io/pypa/manylinux2014_x86_64
 
      volumes:
 
      - /usr/local/share/vcpkg:/vcpkg
.github/workflows/release-macos.yml
Show inline comments
 
@@ -9,13 +9,13 @@ on:
 
        default: ""
 

	
 
jobs:
 
  macos:
 
    name: MacOS
 

	
 
    runs-on: macos-12
 
    runs-on: macos-latest
 
    env:
 
      MACOSX_DEPLOYMENT_TARGET: 10.13
 

	
 
    steps:
 
    - name: Download source
 
      uses: actions/download-artifact@v3
0 comments (0 inline, 0 general)