-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 904 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
name: Linux
on:
pull_request:
branches: [ "master" ]
workflow_dispatch:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout StdFuncs
uses: actions/checkout@v3
with:
repository: hitman-codehq/StdFuncs
path: StdFuncs
- name: Download Libraries
run: |
mv StdFuncs ..
gh run download --repo hitman-codehq/StdFuncs --name Linux-Libraries --dir ../StdFuncs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
make
- name: Build Debug
run: |
make DEBUG=1
- name: Archive Executables
uses: actions/upload-artifact@v3
with:
name: Linux-Executables
path: |
Debug/ls
Release/ls