diff options
| author | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2022-11-14 05:22:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-14 11:22:34 +0100 |
| commit | 3914781ebfd5cb22717cc207cb3d37d8754d0eb7 (patch) | |
| tree | 2e412b87e66b1deef47bef242e7189a200cea0ff /.github | |
| parent | 9eb29ed81cb497a6a216811255f8af7daf3f8bd8 (diff) | |
Import libultraship as a submodule (#1943)
Co-authored-by: briaguya <briaguya>
Co-authored-by: Christopher Leggett <chris@leggett.dev>
Co-authored-by: David Chavez <davi@dcvz.io>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/generate-builds.yml | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/.github/workflows/generate-builds.yml b/.github/workflows/generate-builds.yml index e20fd3c09..33a0e0229 100644 --- a/.github/workflows/generate-builds.yml +++ b/.github/workflows/generate-builds.yml @@ -9,7 +9,9 @@ jobs: extract-assets: runs-on: [ self-hosted, asset-builder ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: Extract assets run: | cp ../../../ZELOOTD.z64 OTRExporter/baserom_non_mq.z64 @@ -25,7 +27,9 @@ jobs: needs: extract-assets runs-on: macos-12 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: ccache uses: hendrikmuhs/ccache-action@v1.2 with: @@ -83,7 +87,9 @@ jobs: needs: extract-assets runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: Install dependencies run: | sudo apt-get update @@ -146,7 +152,9 @@ jobs: run: | sudo apt-get update sudo apt-get install -y ninja-build - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: ccache uses: hendrikmuhs/ccache-action@v1.2 with: @@ -181,7 +189,9 @@ jobs: run: | sudo apt-get update sudo apt-get install -y ninja-build - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: ccache uses: hendrikmuhs/ccache-action@v1.2 with: @@ -219,7 +229,9 @@ jobs: run: | choco install ninja Remove-Item -Path "C:\ProgramData\Chocolatey\bin\ccache.exe" -Force - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: ccache uses: dcvz/ccache-action@27b9f33213c0079872f064f6b6ba0233dfa16ba2 with: |
