mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-04-23 13:05:17 +00:00
Add build ci for linux
This commit is contained in:
parent
1ea9ea1862
commit
c1c5d3c1fa
1 changed files with 37 additions and 0 deletions
37
.github/workflows/build.yml
vendored
Normal file
37
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
on: [ push ]
|
||||
name: Continuous Integration
|
||||
|
||||
# Inspired by Lighthouse's CI
|
||||
# https://github.com/LBPUnion/project-lighthouse/blob/main/.github/workflows/ci.yml
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Build & Test
|
||||
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
env:
|
||||
DB_DATABASE: lighthouse
|
||||
DB_USER: root
|
||||
DB_PASSWORD: lighthouse
|
||||
steps:
|
||||
- name: Cancel previous runs of this workflow
|
||||
uses: styfle/cancel-workflow-action@0.6.0
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install .NET 5.0
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: "5.0.x"
|
||||
|
||||
- name: Compile
|
||||
run: dotnet build -c Release --project UnionPatcher.Gui.Linux
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: UnionPatcher-Linux
|
||||
path: ${{ github.workspace }}/UnionPatcher.Gui.Linux/bin
|
Loading…
Add table
Reference in a new issue