mirror of https://github.com/decompals/wibo.git
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build_and_test:
|
|
name: Build and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install GCC multilib
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gcc-multilib g++-multilib ninja-build
|
|
|
|
- name: Configure
|
|
# Replace with RelWithDebInfo when -O2 crash is fixed
|
|
run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
- name: Build
|
|
run: cmake --build build
|
|
|
|
- name: Test
|
|
run: |
|
|
wget https://cdn.discordapp.com/attachments/727918646525165659/917185027656286218/GC_WII_COMPILERS.zip
|
|
unzip GC_WII_COMPILERS.zip
|
|
MWCIncludes=. build/wibo GC/2.7/mwcceppc.exe -c test/test.c
|
|
file test.o
|
|
|
|
- name: Upload build
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: wibo
|
|
path: build/wibo
|
|
|
|
- name: Publish release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: build/wibo
|