forked from Librelancer/Librelancer
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.39 KB
/
dev-builds.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
name: Development builds
concurrency:
group: devbuilds
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get install -y libgtk-3-dev g++-mingw-w64-x86-64 cmake
- name: Build
run: ./build.sh -j$(nproc) LinuxDaily --with-win64
- name: Archive ubuntu amd64 build (Engine Only)
uses: actions/upload-artifact@v3
with:
name: librelancer-daily-ubuntu-amd64
path: packaging/packages/librelancer-daily-ubuntu-amd64.tar.gz
- name: Archive ubuntu amd64 build (SDK)
uses: actions/upload-artifact@v3
with:
name: librelancer-sdk-daily-ubuntu-amd64
path: packaging/packages/librelancer-sdk-daily-ubuntu-amd64.tar.gz
- name: Archive win64 build (Engine only)
uses: actions/upload-artifact@v3
with:
name: librelancer-daily-win64
path: packaging/packages/librelancer-daily-win64.zip
- name: Archive win64 build (SDK)
uses: actions/upload-artifact@v3
with:
name: librelancer-sdk-daily-win64
path: packaging/packages/librelancer-sdk-daily-win64.zip