From e031a3b78feff4e2debddb6c80bb5c9bc873cdec Mon Sep 17 00:00:00 2001 From: RavePossum Date: Thu, 18 Jul 2024 20:32:16 -0400 Subject: [PATCH] github CI test add poryscript and remove agbcc --- .github/workflows/build.yml | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0322cbe11f..904855e864 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - master + - main - upcoming pull_request: @@ -22,12 +22,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Checkout agbcc - uses: actions/checkout@v2 - with: - path: agbcc - repository: pret/agbcc - - name: Install binutils run: | sudo apt update @@ -36,17 +30,18 @@ jobs: # gcc-arm-none-eabi is only needed for the modern build # as an alternative to dkP - - name: Install agbcc - run: | - ./build.sh - ./install.sh ../ - working-directory: agbcc + - name: Poryscript Download + uses: robinraju/release-downloader@v1 + with: + repository: 'huderlem/poryscript' + latest: true + fileName: 'poryscript-linux.zip' + extract: true - - name: Agbcc - env: - MODERN: 0 - COMPARE: 0 - run: make -j${nproc} -O all + - name: Poryscript Install + run: | + mv poryscript-linux tools/poryscript + sudo chmod +x tools/poryscript/poryscript - name: Modern env: