Skip to content

Commit 46db891

Browse files
committed
Update outdated workflows
1 parent f05cba6 commit 46db891

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

.github/workflows/cmake.yml

+17-10
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,36 @@ jobs:
2222
fail-fast: true
2323
matrix:
2424
include:
25-
- os: windows-2019
25+
- os: windows-2022
2626
triplet: x64-windows
2727
platform-name: windows.x64
28-
- os: macos-12
29-
triplet: x64-osx
30-
platform-name: macos.x64
31-
- os: ubuntu-20.04
28+
- os: macos-14
29+
triplet: arm64-osx
30+
platform-name: macos.arm64
31+
- os: ubuntu-24.04
3232
triplet: x64-linux
3333
platform-name: linux.x64
34+
# libltdl-dev needed to build libxcrypt sub-dependency, others needed for sdl3
35+
apt-packages: libltdl-dev libx11-dev libxft-dev libxext-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev libibus-1.0-dev
3436

3537
env:
3638
# Indicates the CMake build directory where project files and binaries are being produced.
3739
CMAKE_BUILD_DIR: ${{ github.workspace }}/build
40+
archive-name:
3841

3942
steps:
43+
- name: Install APT packages
44+
if: matrix.apt-packages
45+
run: sudo apt-get install ${{ matrix.apt-packages }}
4046
# fetch-depth=0 and v1 are needed for 'git describe' to work correctly.
41-
- uses: actions/checkout@v1
47+
- uses: actions/checkout@v4
4248
with:
4349
fetch-depth: 0
4450
submodules: true
4551
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
4652
- uses: lukka/get-cmake@latest
4753
- name: Restore vcpkg and its artifacts
48-
uses: actions/cache@v2
54+
uses: actions/cache@v4
4955
with:
5056
# The first path is where vcpkg generates artifacts while consuming the vcpkg.json manifest file.
5157
# The second path is the location of vcpkg (it contains the vcpkg executable and data files).
@@ -102,15 +108,16 @@ jobs:
102108
Compress-Archive dist/*/ ${{ env.archive-name }}.zip
103109
# Upload archives as artifacts, these can be downloaded from the GitHub Actions page.
104110
- name: "Upload Artifact"
105-
uses: actions/upload-artifact@v2
111+
uses: actions/upload-artifact@v4
106112
with:
107-
name: automated-builds
113+
name: automated-builds-${{ matrix.triplet }}
108114
path: ${{ env.archive-name }}.*
109115
retention-days: 7
116+
compression-level: 0
110117
if-no-files-found: error
111118
# If a tag is pushed then a new archives are uploaded to GitHub Releases automatically.
112119
- name: Upload release
113-
if: startsWith(github.ref, 'refs/tags/')
120+
if: github.ref_type == 'tag'
114121
uses: svenstaro/upload-release-action@v2
115122
with:
116123
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)