From a4d85e6bcf00920a8c29b9b6587f9759baa28829 Mon Sep 17 00:00:00 2001 From: ZiplineGun Date: Mon, 24 Nov 2025 14:03:55 +0000 Subject: [PATCH] fix auto builds --- .github/workflows/c-cpp.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 04b00c9..ee3665b 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -3,19 +3,25 @@ name: C/C++ CI on: push: branches: [ "main" ] + paths: + - 'xsr2/**' + - 'fsr_ll/**' pull_request: branches: [ "main" ] + paths: + - 'xsr2/**' + - 'fsr_ll/**' jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 - name: install tools run: | sudo apt update - sudo apt install gcc-arm-linux-gnueabi qemu qemu-user-static qemu-system-arm + sudo apt install gcc-arm-linux-gnueabi qemu-user-static qemu-system-arm - name: make xsr2 run: | cd xsr2 @@ -33,4 +39,4 @@ jobs: uses: actions/upload-artifact@master with: name: FSR - path: fsr_ll/main + path: fsr_ll/main \ No newline at end of file