Add Terraria Edition
Some checks failed
Build and Test / friends (push) Failing after 5m30s
Build and Test / splatoon-testfire (push) Successful in 5m48s
Build and Test / fast-racing-neo (push) Successful in 6m17s
Build and Test / wii-u-chat (push) Successful in 6m32s
Build and Test / wii-sports-club (push) Successful in 7m38s
Build and Test / mario-tennis (push) Successful in 7m39s
Build and Test / puyopuyo (push) Successful in 7m40s
Build and Test / sonic-transformed (push) Successful in 7m42s
Build and Test / splatoon (push) Successful in 7m49s
Build and Test / minecraft-wiiu (push) Successful in 7m51s
Build and Test / super-mario-maker (push) Successful in 8m10s
Build and Test / terraria (push) Successful in 11m8s
Some checks failed
Build and Test / friends (push) Failing after 5m30s
Build and Test / splatoon-testfire (push) Successful in 5m48s
Build and Test / fast-racing-neo (push) Successful in 6m17s
Build and Test / wii-u-chat (push) Successful in 6m32s
Build and Test / wii-sports-club (push) Successful in 7m38s
Build and Test / mario-tennis (push) Successful in 7m39s
Build and Test / puyopuyo (push) Successful in 7m40s
Build and Test / sonic-transformed (push) Successful in 7m42s
Build and Test / splatoon (push) Successful in 7m49s
Build and Test / minecraft-wiiu (push) Successful in 7m51s
Build and Test / super-mario-maker (push) Successful in 8m10s
Build and Test / terraria (push) Successful in 11m8s
This commit is contained in:
parent
dca2900263
commit
8393ad3656
2 changed files with 42 additions and 0 deletions
|
|
@ -341,3 +341,33 @@ jobs:
|
|||
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||
DATABASE_URL: ${{ secrets.DATABASE_SMM }}
|
||||
run: ./.ci-scripts/make-edition.sh super-mario-maker
|
||||
|
||||
terraria:
|
||||
runs-on: debian-trixie
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Cache container storage
|
||||
uses: actions/cache@v6
|
||||
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 Terraria edition
|
||||
env:
|
||||
CI_REGISTRY_IMAGE: git.spbr.net/spacebar/rust-nex
|
||||
CI_COMMIT_SHORT_SHA: ${{ env.SHORT_SHA }}
|
||||
run: ./.ci-scripts/make-edition.sh terraria
|
||||
|
|
|
|||
Loading…
Reference in a new issue