Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-linux:
name: Build Linux
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
uses: hendrikmuhs/[email protected]
with:
key: ccache-${{ runner.os }}-${{ matrix.preset }}

- name: Cache vcpkg
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: |
choco install ninja
Remove-Item -Path "C:\ProgramData\Chocolatey\bin\ccache.exe" -Force -ErrorAction SilentlyContinue

- name: Configure Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1

Expand All @@ -134,7 +134,7 @@ jobs:

- name: Build Project
run: cmake --build .\out\build\${{ env.CMAKE_PRESET }} --target UnleashedRecomp

- name: Pack Release
run: |
New-Item -ItemType Directory -Path .\release
Expand Down Expand Up @@ -162,8 +162,6 @@ jobs:
runs-on: ubuntu-24.04
env:
FLATPAK_ID: io.github.hedge_dev.unleashedrecomp
FREEDESKTOP_VERSION: 23.08
LLVM_VERSION: 18

steps:
- name: Checkout Repository
Expand All @@ -190,13 +188,11 @@ jobs:
key: ccache-${{ runner.os }}

- name: Prepare Project
run: cp ./private/* ./UnleashedRecompLib/private
run: cp ./private/* ./UnleashedRecompLib/private

- name: Prepare Flatpak
run: |
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak --user install -y flathub org.freedesktop.Sdk//${{ env.FREEDESKTOP_VERSION }}
flatpak --user install -y flathub org.freedesktop.Sdk.Extension.llvm${{ env.LLVM_VERSION }}//${{ env.FREEDESKTOP_VERSION }}

- name: Build Flatpak
run: |
Expand Down
2 changes: 1 addition & 1 deletion flatpak/io.github.hedge_dev.unleashedrecomp.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "io.github.hedge_dev.unleashedrecomp",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"runtime-version": "24.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions" : [ "org.freedesktop.Sdk.Extension.llvm18" ],
"finish-args": [
Expand Down