Skip to content

[PCI] Add missing interrupt registers. #137

[PCI] Add missing interrupt registers.

[PCI] Add missing interrupt registers. #137

Workflow file for this run

# Copyright 2025 Xenon Emulator Project
name: Build
on: [push, pull_request]
concurrency:
group: ci-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'push' }}
env:
BUILD_TYPE: Release
jobs:
Windows:
runs-on: windows-2025
steps:
- uses: actions/checkout@main
with:
submodules: recursive
- name: Cache CMake Configuration
uses: actions/cache@main
env:
cache-name: ${{ runner.os }}-xenon-cache-config
with:
path: |
${{github.workspace}}/build
key: ${{ env.cache-name }}-${{ hashFiles('**/CMakeLists.txt', 'cmake/**') }}
restore-keys: |
${{ env.cache-name }}-
- name: Cache CMake Build
uses: hendrikmuhs/[email protected]
env:
cache-name: ${{ runner.os }}-xenon-cache-build
with:
append-timestamp: false
key: ${{ env.cache-name }}-${{ hashFiles('**/CMakeLists.txt', 'cmake/**') }}
- name: Setup VS Environment
uses: ilammy/[email protected]
with:
arch: amd64
- name: Configure CMake
run: cmake --fresh -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $env:NUMBER_OF_PROCESSORS
- name: Upload Windows Artifact
uses: actions/upload-artifact@main
with:
name: Xenon-win64
path: ${{github.workspace}}/build/Xenon.exe