diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2024-01-28 23:11:29 -0500 |
|---|---|---|
| committer | louist103 <louist103@gmail.com> | 2024-01-29 00:43:31 -0500 |
| commit | 346c96d5d072f28009d781345eef0c286d5b6582 (patch) | |
| tree | 63f7a3016a77ddb673c13ac3a9e25e9cd3c8b057 | |
| parent | c0a18d093a0d0834d7f7c77ff55555aae1aa20bf (diff) | |
Fix actions
| -rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a22af21..4c35dfa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,12 +37,14 @@ jobs: - name: Setup OOT run: | cd oot - cp ~/baserom_original.z64 ./baserom_original.z64 + mkdir -p baseroms/gc-eu-mq-dbg + cp ~/baserom_original.z64 ./baseroms/gc-eu-mq-dbg/baserom.z64 + make venv make -C tools -j cp ../ZAPD.out tools/ZAPD/ - python3 fixbaserom.py - python3 extract_baserom.py - python3 extract_assets.py + .venv/bin/python3 tools/decompress_baserom.py gc-eu-mq-dbg + .venv/bin/python3 extract_baserom.py + .venv/bin/python3 extract_assets.py -j 4 - name: Install Python dependencies run: | @@ -68,6 +70,7 @@ jobs: - name: Build oot run: | cd oot + make venv make -j - name: Build mm |
