Skip to content

Interface: Render comm heads with lighting, vanilla-accurate position… #6

Interface: Render comm heads with lighting, vanilla-accurate position…

Interface: Render comm heads with lighting, vanilla-accurate position… #6

Workflow file for this run

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: 8.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 libopenal1
- 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