-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (30 loc) · 866 Bytes
/
mono.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Build TinkeDSi nightly with mono
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container: mono:latest
steps:
- uses: actions/checkout@v3
- name: Setup build toolchain
run: |
apt-get update
apt-get -y install build-essential
mkbundle --fetch-target mono-6.8.0-ubuntu-16.04-x64
- name: Set workspace permissions
run: chmod 777 -R "$GITHUB_WORKSPACE"
- name: Build TinkeDSi
run: |
cd $GITHUB_WORKSPACE
./compile.sh Release x64
cd $GITHUB_WORKSPACE/build
mkbundle --deps Tinke.exe -o TinkeDSi --cross mono-6.8.0-ubuntu-16.04-x64 --i18n all -z --static
shell: bash
- uses: actions/upload-artifact@master
with:
name: TinkeDSi-nightly-mono
path: build