Add prelimiary support for Wii Sports Club and MTUS
All checks were successful
Build and Test / splatoon-testfire (push) Successful in 2m21s
Build and Test / super-mario-maker (push) Successful in 2m48s
Build and Test / minecraft-wiiu (push) Successful in 3m22s
Build and Test / fast-racing-neo (push) Successful in 4m8s
Build and Test / wii-u-chat (push) Successful in 4m36s
Build and Test / puyopuyo (push) Successful in 5m9s
Build and Test / friends (push) Successful in 5m27s
Build and Test / mario-tennis (push) Successful in 6m13s
Build and Test / splatoon (push) Successful in 6m13s
Build and Test / wii-sports-club (push) Successful in 6m51s
All checks were successful
Build and Test / splatoon-testfire (push) Successful in 2m21s
Build and Test / super-mario-maker (push) Successful in 2m48s
Build and Test / minecraft-wiiu (push) Successful in 3m22s
Build and Test / fast-racing-neo (push) Successful in 4m8s
Build and Test / wii-u-chat (push) Successful in 4m36s
Build and Test / puyopuyo (push) Successful in 5m9s
Build and Test / friends (push) Successful in 5m27s
Build and Test / mario-tennis (push) Successful in 6m13s
Build and Test / splatoon (push) Successful in 6m13s
Build and Test / wii-sports-club (push) Successful in 6m51s
This commit is contained in:
parent
d39758d748
commit
d10e0cb596
2 changed files with 84 additions and 0 deletions
|
|
@ -11,6 +11,66 @@ env:
|
|||
SHORT_SHA: ${{ github.sha }}
|
||||
|
||||
jobs:
|
||||
mario-tennis:
|
||||
runs-on: debian-trixie
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Cache container storage
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
/var/lib/containers/storage
|
||||
/run/containers/storage
|
||||
~/.local/share/containers/storage
|
||||
key: image-cache
|
||||
|
||||
- name: Login to registry
|
||||
run: docker login -u ${{ secrets.PACKAGE_USER }} -p ${{ secrets.PACKAGE_PWD }} git.spbr.net
|
||||
|
||||
- name: Set short SHA
|
||||
run: echo "SHORT_SHA=${GITHUB_SHA::6}" >> $GITHUB_ENV
|
||||
|
||||
- name: Build MTUS tetris edition
|
||||
env:
|
||||
CI_REGISTRY_IMAGE: git.spbr.net/spacebar/rust-nex
|
||||
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||
run: ./.ci-scripts/make-edition.sh mario-tennis
|
||||
|
||||
wii-sports-club:
|
||||
runs-on: debian-trixie
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Cache container storage
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
/var/lib/containers/storage
|
||||
/run/containers/storage
|
||||
~/.local/share/containers/storage
|
||||
key: image-cache
|
||||
|
||||
- name: Login to registry
|
||||
run: docker login -u ${{ secrets.PACKAGE_USER }} -p ${{ secrets.PACKAGE_PWD }} git.spbr.net
|
||||
|
||||
- name: Set short SHA
|
||||
run: echo "SHORT_SHA=${GITHUB_SHA::6}" >> $GITHUB_ENV
|
||||
|
||||
- name: Build Wii Sports Club edition
|
||||
env:
|
||||
CI_REGISTRY_IMAGE: git.spbr.net/spacebar/rust-nex
|
||||
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||
run: ./.ci-scripts/make-edition.sh wii-sports-club
|
||||
|
||||
puyopuyo:
|
||||
runs-on: debian-trixie
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue