Add new games to CI
All checks were successful
Build and Test / super-mario-maker (push) Successful in 2m0s
Build and Test / splatoon (push) Successful in 2m31s
Build and Test / wii-u-chat (push) Successful in 3m11s
Build and Test / friends (push) Successful in 3m27s
Build and Test / fast-racing-neo (push) Successful in 4m8s
Build and Test / splatoon-testfire (push) Successful in 4m30s
All checks were successful
Build and Test / super-mario-maker (push) Successful in 2m0s
Build and Test / splatoon (push) Successful in 2m31s
Build and Test / wii-u-chat (push) Successful in 3m11s
Build and Test / friends (push) Successful in 3m27s
Build and Test / fast-racing-neo (push) Successful in 4m8s
Build and Test / splatoon-testfire (push) Successful in 4m30s
This commit is contained in:
parent
43e526c834
commit
96f0e6c652
2 changed files with 72 additions and 0 deletions
|
|
@ -11,6 +11,66 @@ env:
|
||||||
SHORT_SHA: ${{ github.sha }}
|
SHORT_SHA: ${{ github.sha }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
splatoon-testfire:
|
||||||
|
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 Splatoon Testfire edition
|
||||||
|
env:
|
||||||
|
CI_REGISTRY_IMAGE: git.spbr.net/spacebar/rust-nex
|
||||||
|
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||||
|
run: ./.ci-scripts/make-edition.sh splatoon-testfire
|
||||||
|
|
||||||
|
fast-racing-neo:
|
||||||
|
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 Fast Racing NEO edition
|
||||||
|
env:
|
||||||
|
CI_REGISTRY_IMAGE: git.spbr.net/spacebar/rust-nex
|
||||||
|
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||||
|
run: ./.ci-scripts/make-edition.sh fast-racing-neo
|
||||||
|
|
||||||
wii-u-chat:
|
wii-u-chat:
|
||||||
runs-on: debian-trixie
|
runs-on: debian-trixie
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,18 @@ splatoon:
|
||||||
RNEX_VIRTUAL_PORT_SECURE: "1:10"
|
RNEX_VIRTUAL_PORT_SECURE: "1:10"
|
||||||
RNEX_DEFAULT_PORT: 6000
|
RNEX_DEFAULT_PORT: 6000
|
||||||
RNEX_ACCESS_KEY: "6f599f81"
|
RNEX_ACCESS_KEY: "6f599f81"
|
||||||
|
splatoon-testfire:
|
||||||
|
include-in-checkall: true
|
||||||
|
features:
|
||||||
|
- prudpv1
|
||||||
|
- v3-8-15
|
||||||
|
- splatoon
|
||||||
|
settings:
|
||||||
|
AUTH_REPORT_VERSION: "branch:origin/project/wup-agmj build:3_8_15_2004_0"
|
||||||
|
RNEX_VIRTUAL_PORT_INSECURE: "1:10"
|
||||||
|
RNEX_VIRTUAL_PORT_SECURE: "1:10"
|
||||||
|
RNEX_DEFAULT_PORT: 10000
|
||||||
|
RNEX_ACCESS_KEY: "da693ee5"
|
||||||
friends:
|
friends:
|
||||||
include-in-checkall: false
|
include-in-checkall: false
|
||||||
features:
|
features:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue