forked from spectrumero/tnfsd
-
Notifications
You must be signed in to change notification settings - Fork 11
52 lines (47 loc) · 1.38 KB
/
build.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
on: [push]
name: tnfsd Build
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build tnfsd
run: cd D:\a\tnfsd\tnfsd\src && make OS=Windows_NT DEBUG=yes USAGELOG=yes
- uses: actions/upload-artifact@master
with:
name: tnfsd_win-x64
path: bin/tnfsd.exe
build-ubuntu:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build tnfsd
run: cd /home/runner/work/tnfsd/tnfsd/src && make OS=LINUX DEBUG=yes USAGELOG=yes
- uses: actions/upload-artifact@master
with:
name: tnfsd_linux-x64
path: bin/tnfsd
build-macos-arm64:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build tnfsd
run: cd /Users/runner/work/tnfsd/tnfsd/src && make OS=BSD DEBUG=yes USAGELOG=yes
- uses: actions/upload-artifact@master
with:
name: tnfsd_macos-arm64
path: bin/tnfsd
build-macos-x64:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build tnfsd
run: cd /Users/runner/work/tnfsd/tnfsd/src && make OS=BSD DEBUG=yes USAGELOG=yes
- uses: actions/upload-artifact@master
with:
name: tnfsd_macos-x64
path: bin/tnfsd