2024-05-18 04:23:48 +02:00
|
|
|
name: validate
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-05-18 22:35:13 +02:00
|
|
|
- dev
|
2024-05-20 22:55:59 +02:00
|
|
|
pull_request_target:
|
2024-05-18 04:23:48 +02:00
|
|
|
types: [opened, synchronize]
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
2024-05-20 22:55:59 +02:00
|
|
|
authorize:
|
|
|
|
environment:
|
|
|
|
${{ github.event_name == 'pull_request_target' &&
|
|
|
|
github.event.pull_request.head.repo.full_name != github.repository &&
|
|
|
|
'external' || 'internal' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- run: echo ✓
|
2024-05-18 04:23:48 +02:00
|
|
|
build-unix:
|
2024-05-20 22:55:59 +02:00
|
|
|
needs: authorize
|
2024-05-18 04:23:48 +02:00
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
type: [ Debug, Release ]
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
2024-05-20 22:55:59 +02:00
|
|
|
ref: ${{ github.event.pull_request.head.sha || github.ref }}
|
2024-05-18 04:23:48 +02:00
|
|
|
submodules: recursive
|
|
|
|
- name: ccache
|
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
|
|
with:
|
|
|
|
key: ${{ runner.os }}-z64re-ccache-${{ matrix.type }}
|
|
|
|
- name: Install Linux Dependencies
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2024-05-22 10:55:12 +02:00
|
|
|
sudo apt-get install -y ninja-build libsdl2-dev libgtk-3-dev lld llvm clang-15 libfuse2
|
2024-05-18 04:23:48 +02:00
|
|
|
|
|
|
|
# Install SDL2
|
|
|
|
echo ::group::install SDL2
|
|
|
|
|
|
|
|
# Enable ccache
|
|
|
|
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
|
|
|
|
wget https://www.libsdl.org/release/SDL2-2.26.1.tar.gz
|
|
|
|
tar -xzf SDL2-2.26.1.tar.gz
|
|
|
|
cd SDL2-2.26.1
|
|
|
|
./configure
|
|
|
|
make -j 10
|
|
|
|
sudo make install
|
|
|
|
sudo cp -av /usr/local/lib/libSDL* /lib/x86_64-linux-gnu/
|
|
|
|
echo ::endgroup::
|
|
|
|
- name: Prepare Build
|
|
|
|
run: |-
|
2024-05-18 22:35:13 +02:00
|
|
|
git clone ${{ secrets.ZRE_REPO_WITH_PAT }}
|
2024-05-18 04:23:48 +02:00
|
|
|
./zre/process.sh
|
|
|
|
- name: Build N64Recomp & RSPRecomp
|
|
|
|
if: runner.os != 'Windows'
|
|
|
|
run: |
|
|
|
|
git clone https://github.com/Mr-Wiseguy/N64Recomp.git --recurse-submodules N64RecompSource
|
|
|
|
cd N64RecompSource
|
|
|
|
|
|
|
|
# enable ccache
|
|
|
|
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
|
|
|
|
# Build N64Recomp & RSPRecomp
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
|
|
|
cmake --build cmake-build --config Release --target N64Recomp -j 8
|
|
|
|
cmake --build cmake-build --config Release --target RSPRecomp -j 8
|
|
|
|
|
|
|
|
# Copy N64Recomp & RSPRecomp to root directory
|
|
|
|
cp cmake-build/N64Recomp ..
|
|
|
|
cp cmake-build/RSPRecomp ..
|
|
|
|
- name: Run N64Recomp & RSPRecomp
|
|
|
|
run: |
|
|
|
|
./N64Recomp us.rev1.toml
|
|
|
|
./RSPRecomp aspMain.us.rev1.toml
|
|
|
|
./RSPRecomp njpgdspMain.us.rev1.toml
|
|
|
|
- name: Build ZeldaRecomp
|
|
|
|
run: |-
|
|
|
|
# enable ccache
|
|
|
|
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=${{ matrix.type }} -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=clang++-15 -DCMAKE_C_COMPILER=clang-15 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
|
|
|
cmake --build cmake-build --config ${{ matrix.type }} --target Zelda64Recompiled -j 8
|
|
|
|
- name: Prepare Archive
|
|
|
|
run: |
|
|
|
|
mv cmake-build/Zelda64Recompiled Zelda64Recompiled
|
|
|
|
rm -rf assets/scss
|
2024-05-18 16:38:38 +02:00
|
|
|
tar -czf Zelda64Recompiled-${{ runner.os }}-${{ matrix.type }}.tar.gz Zelda64Recompiled assets/
|
2024-05-18 04:23:48 +02:00
|
|
|
- name: Archive Zelda64Recomp
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: Zelda64Recompiled-${{ runner.os }}-${{ matrix.type }}
|
2024-05-18 16:38:38 +02:00
|
|
|
path: Zelda64Recompiled-${{ runner.os }}-${{ matrix.type }}.tar.gz
|
2024-05-22 10:55:12 +02:00
|
|
|
- name: Prepare AppImage
|
|
|
|
run: ./.github/linux/appimage.sh
|
|
|
|
- name: Zelda64Recomp AppImage
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: Zelda64Recompiled-AppImage-${{ matrix.type }}
|
|
|
|
path: Zelda64Recompiled-x86_64.AppImage
|
2024-05-18 04:23:48 +02:00
|
|
|
build-windows:
|
2024-05-20 22:55:59 +02:00
|
|
|
needs: authorize
|
2024-05-18 04:23:48 +02:00
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
type: [ Debug, Release ]
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
2024-05-20 22:55:59 +02:00
|
|
|
ref: ${{ github.event.pull_request.head.sha || github.ref }}
|
2024-05-18 04:23:48 +02:00
|
|
|
submodules: recursive
|
|
|
|
- name: ccache
|
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
|
|
with:
|
|
|
|
key: ${{ runner.os }}-z64re-ccache-${{ matrix.type }}
|
|
|
|
- name: Install Windows Dependencies
|
|
|
|
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
|
|
|
|
- name: Prepare Build
|
|
|
|
run: |-
|
2024-05-18 22:35:13 +02:00
|
|
|
git clone ${{ secrets.ZRE_REPO_WITH_PAT }}
|
2024-05-18 04:23:48 +02:00
|
|
|
./zre/process.ps1
|
|
|
|
- name: Build N64Recomp & RSPRecomp
|
|
|
|
run: |
|
|
|
|
git clone https://github.com/Mr-Wiseguy/N64Recomp.git --recurse-submodules N64RecompSource
|
|
|
|
cd N64RecompSource
|
|
|
|
|
|
|
|
# enable ccache
|
|
|
|
set $env:PATH="$env:USERPROFILE/.cargo/bin;$env:PATH"
|
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
|
|
|
cmake --build cmake-build --config Release --target N64Recomp -j 8
|
|
|
|
cmake --build cmake-build --config Release --target RSPRecomp -j 8
|
|
|
|
|
|
|
|
# Copy N64Recomp & RSPRecomp to root directory
|
|
|
|
cp cmake-build/N64Recomp.exe ..
|
|
|
|
cp cmake-build/RSPRecomp.exe ..
|
|
|
|
- name: Run N64Recomp & RSPRecomp
|
|
|
|
run: |
|
|
|
|
./N64Recomp.exe us.rev1.toml
|
|
|
|
./RSPRecomp.exe aspMain.us.rev1.toml
|
|
|
|
./RSPRecomp.exe njpgdspMain.us.rev1.toml
|
|
|
|
- name: Build ZeldaRecomp
|
|
|
|
run: |-
|
|
|
|
# enable ccache
|
|
|
|
set $env:PATH="$env:USERPROFILE/.cargo/bin;$env:PATH"
|
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=${{ matrix.type }} -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build -DCMAKE_CXX_FLAGS="-Xclang -fcxx-exceptions"
|
|
|
|
cmake --build cmake-build --config ${{ matrix.type }} --target Zelda64Recompiled -j 8
|
|
|
|
- name: Prepare Archive
|
|
|
|
run: |
|
|
|
|
Move-Item -Path "cmake-build/Zelda64Recompiled.exe" -Destination "Zelda64Recompiled.exe"
|
2024-05-18 16:38:38 +02:00
|
|
|
Move-Item -Path "cmake-build/dxcompiler.dll" -Destination "dxcompiler.dll"
|
|
|
|
Move-Item -Path "cmake-build/dxil.dll" -Destination "dxil.dll"
|
|
|
|
Move-Item -Path "cmake-build/SDL2.dll" -Destination "SDL2.dll"
|
2024-05-18 04:23:48 +02:00
|
|
|
Remove-Item -Path "assets/scss" -Recurse -Force
|
|
|
|
- name: Archive Zelda64Recomp
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: Zelda64Recompiled-${{ runner.os }}-${{ matrix.type }}
|
|
|
|
path: |
|
|
|
|
Zelda64Recompiled.exe
|
2024-05-18 16:38:38 +02:00
|
|
|
dxcompiler.dll
|
|
|
|
dxil.dll
|
|
|
|
SDL2.dll
|
2024-05-18 04:23:48 +02:00
|
|
|
assets/
|