Add support for older NEX version and add Wii U Chat to CI
This commit is contained in:
parent
e7044e21e9
commit
c5822ae632
3 changed files with 33 additions and 2 deletions
|
|
@ -11,6 +11,36 @@ env:
|
|||
SHORT_SHA: ${{ github.sha }}
|
||||
|
||||
jobs:
|
||||
wii-u-chat:
|
||||
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 U Chat 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-u-chat
|
||||
|
||||
splatoon:
|
||||
runs-on: debian-trixie
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ wiiu-chat:
|
|||
include-in-checkall: true
|
||||
features:
|
||||
- prudpv1
|
||||
- v3-8-15
|
||||
- v3-3-2
|
||||
settings:
|
||||
AUTH_REPORT_VERSION: "branch:origin/project/wup-agmj build:3_8_15_2004_0"
|
||||
RNEX_VIRTUAL_PORT_INSECURE: "1:10"
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@ rmc_struct_header = []
|
|||
guest_login = []
|
||||
friends = ["guest_login", "database-support"]
|
||||
big_pid = []
|
||||
v3-8-15 = ["rmc_struct_header"]
|
||||
v3-3-2 = []
|
||||
v3-8-15 = ["rmc_struct_header", "v3-3-2"]
|
||||
v4-3-11 = ["v3-8-15"]
|
||||
nx = ["big_pid"]
|
||||
datastore = ["database-support", "v3-8-15", "dep:aws-sdk-s3", "dep:aws-config"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue