Compare commits
No commits in common. "5379d99c2923e2f4b5b92a8668f37da3249765a5" and "cb40f585a87350ea99d67a34d93e052128a917b0" have entirely different histories.
5379d99c29
...
cb40f585a8
1 changed files with 0 additions and 69 deletions
|
|
@ -1,69 +0,0 @@
|
||||||
name: Build and Test
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: ["**"]
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
env:
|
|
||||||
DOCKER_TLS_CERTDIR: /certs
|
|
||||||
IMAGE_TAG: ${{ github.ref_name }}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
splatoon:
|
|
||||||
runs-on: alpine:latest
|
|
||||||
|
|
||||||
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: Install Podman
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y podman
|
|
||||||
|
|
||||||
- name: Login to registry
|
|
||||||
run: podman login -u ${{ vars.PACKAGE_USER }} -p ${{ vars.PACKAGE_PWD }} ${{ vars.PACKAGE_URL }}
|
|
||||||
|
|
||||||
- name: Build Splatoon edition
|
|
||||||
run: ./.ci-scripts/make-edition.sh splatoon
|
|
||||||
|
|
||||||
friends:
|
|
||||||
runs-on: alpine:latest
|
|
||||||
|
|
||||||
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: Install Podman
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y podman
|
|
||||||
|
|
||||||
- name: Login to registry
|
|
||||||
run: podman login -u ${{ vars.PACKAGE_USER }} -p ${{ vars.PACKAGE_PWD }} ${{ vars.PACKAGE_URL }}
|
|
||||||
|
|
||||||
- name: Build Friends edition
|
|
||||||
run: ./.ci-scripts/make-edition.sh friends
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue