From ae0f4c796362714b976ccf1b9f28713547c1f301 Mon Sep 17 00:00:00 2001 From: 2fort sink <87287937+OEMunlag@users.noreply.github.com> Date: Sun, 1 Feb 2026 13:54:21 -0300 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 109 ------------------------------------ 1 file changed, 109 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 090f233d..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,109 +0,0 @@ -name: Build Horizon OC Zeus - -on: - push: - branches: [ develop, main, master ] - pull_request: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - # Minimal devkitA64 container, apparently dkp-toolchain isn't needed? - container: - image: devkitpro/devkita64:latest - - steps: - - name: Checkout repository and submodules # why are we doing this? I don't think we use submodules but memory doesn't serve so let's keep it - uses: actions/checkout@v4 - with: - submodules: recursive - - # ------------------------------------------------- - # Fix PATH for devkitA64 and devkitARM - # ------------------------------------------------- - - name: Set devkitPro PATH - run: | - export DEVKITPRO=/opt/devkitpro - export DEVKITA64=$DEVKITPRO/devkitA64 - export DEVKITARM=$DEVKITPRO/devkitARM - export PATH=$DEVKITA64/bin:$DEVKITARM/bin:$PATH - aarch64-none-elf-gcc --version - arm-none-eabi-gcc --version - shell: bash - - - name: - run: apt install ccache -y - shell: bash - - # ------------------------------------------------- - # Get short commit SHA - # ------------------------------------------------- - - name: Set commit SHA - id: vars - run: echo "SHORT_SHA=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV - - # ------------------------------------------------- - # Clone Atmosphère - # ------------------------------------------------- - - name: Clone Atmosphere - run: git clone https://github.com/Atmosphere-NX/Atmosphere.git atmosphere - - # ------------------------------------------------- - # Clone Horizon OC (develop branch) kinda suspicious for now, shouldn't it just already be cloned on the actions runner? - # ------------------------------------------------- - #- name: Clone Horizon OC - # run: git clone -b develop --single-branch https://github.com/Horizon-OC/Horizon-OC.git horizon-oc - - # ------------------------------------------------- - # Prepare build folder - # ------------------------------------------------- - - name: Prepare build folder - run: | - mkdir -p build - cp -r atmosphere/ build/ - - # ------------------------------------------------- - # Override loader source - # ------------------------------------------------- - - name: Override ldr_process_creation.cpp - run: | - cp -f Source/Atmosphere/stratosphere/loader/source/ldr_process_creation.cpp \ - build/stratosphere/loader/source/ldr_process_creation.cpp - - # ------------------------------------------------- - # Build Horizon OC Zeus (trying ccache, directly invoking make instead, hacky) - # ------------------------------------------------- - #- name: Build Horizon OC Zeus - # working-directory: horizon-oc - # run: | - # chmod +x build.sh - # ./build.sh - - name: Build (try) - working-directory: build/stratosphere/loader - run: | # I forgot what dkp uses - make -n | grep -E "gcc|g\+\+|clang" - ccache make -j$(($(nproc) * 2)) - hactool -t kip1 out/nintendo_nx_arm64_armv8a/release/loader.kip --uncompress=hoc.kip - cp build/stratosphere/loader/hoc.kip dist/atmosphere/kips/hoc.kip - - - # ------------------------------------------------- - # Package dist folder as ZIP with commit SHA - # ------------------------------------------------- - - name: Package dist - # working-directory: horizon-oc - run: | - ZIP_NAME="horizon-oc-zeus-dist-${SHORT_SHA}.zip" - zip -r "$ZIP_NAME" dist - echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV - - # ------------------------------------------------- - # Upload ZIP artifact - # ------------------------------------------------- - - name: Upload build artifact - uses: actions/upload-artifact@v4 - with: - name: horizon-oc-zeus-dist - path: horizon-oc/${{ env.ZIP_NAME }}