646ab128 [nostalgia/gfx] Cleanup 74cf0556 [nostalgia] Cleanup 0d8ba1b1 [nostalgia/gfx] Cleanup formatting mistake 20edbb7f [buildcore] Map aarch64 to arm64 6febc7cc [nostalgia] Fix build b94d6b50 [nostalgia] Remove scene package, finish stubbing out sound b3952cab [nostalgia] Add build upload step to CI 2ffc11b0 Merge commit 'e723ead864edb4bc160e4d69713309174ad9e82e' 96cace2c [studio] Cleanup 472f5702 [nostalgia/gfx/studio/tilesheet] Change max export scale to 135 c0ac4345 [studio] Cleanup git-subtree-dir: deps/nostalgia git-subtree-split: 646ab1283f1f486d301e742459467e7bbfdfc8f5
27 lines
749 B
YAML
27 lines
749 B
YAML
name: Build
|
|
run-name: ${{ gitea.actor }} build and test
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: olympic
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- run: make purge configure-debug
|
|
- run: make build
|
|
- run: make test
|
|
- run: make purge configure-asan
|
|
- run: make build
|
|
- run: make test
|
|
- run: make purge configure-release
|
|
- run: make build
|
|
- run: make test
|
|
- run: make install
|
|
- run: mv dist/linux-x86_64-release nostalgia-linux-x86_64
|
|
- run: tar cf nostalgia-linux-x86_64.tar nostalgia-linux-x86_64
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: nostalgia-linux-x86_64
|
|
path: nostalgia-linux-x86_64.tar
|