-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 988 Bytes
/
linux.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
name: Linux
on:
workflow_call:
inputs:
upload_url:
required: false
type: string
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install -y cmake
sudo apt-get install -y clang
sudo apt-get install -y ninja-build
- name: Configure and build
run: |
cmake --preset linux64-release
cmake --build build
- name: Upload binary to release (optional)
if: ${{ inputs.upload_url }}
id: upload-release-binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ inputs.upload_url }}
asset_path: build/udp-relay
asset_name: udp-relay-linux64
asset_content_type: application/executable