diff options
| author | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2022-02-07 01:06:33 +0100 |
|---|---|---|
| committer | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2022-02-07 02:35:02 +0100 |
| commit | 40b7d95e9b16252d1aebb0706f3bba885f6e67cf (patch) | |
| tree | ec7604008134f312c403f895661c4c4d6caa96b6 /.github/workflows | |
| parent | 57cda18641d16ba4e4fec52b5514e48db8ee4593 (diff) | |
| download | psn00bsdk-40b7d95e9b16252d1aebb0706f3bba885f6e67cf.tar.gz | |
Add LIBPSN00B_GENERATOR option, fix .incbin alignment
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a72f5d3..a2a5510 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,9 +83,11 @@ jobs: # No surprises here either. The GitHub Actions VMs even come with most of the # dependencies required to build PSn00bSDK preinstalled. + # NOTE: the workaround to allow the toolchain cache to be loaded (see below) + # doesn't seem to work on Windows Server 2022 currently. build-sdk-windows: name: Build PSn00bSDK on Windows - runs-on: windows-latest + runs-on: windows-2019 needs: build-gcc steps: @@ -111,12 +113,8 @@ jobs: - name: Fetch repo contents uses: actions/checkout@v2 with: - path: sdk - - - name: Update repo submodules - run: | - cd sdk - git submodule update --init --recursive + path: sdk + submodules: recursive - name: Build and package PSn00bSDK run: | @@ -159,12 +157,8 @@ jobs: - name: Fetch repo contents uses: actions/checkout@v2 with: - path: sdk - - - name: Update repo submodules - run: | - cd sdk - git submodule update --init --recursive + path: sdk + submodules: recursive - name: Build and package PSn00bSDK run: | |
