-
Notifications
You must be signed in to change notification settings - Fork 6
65 lines (62 loc) · 1.38 KB
/
c-cpp.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Nightly Build
on:
schedule:
- cron: "0 16 * * *"
workflow_dispatch:
jobs:
mac-aarch64-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Update Tag
run: |
git fetch --tags origin
git tag -f next_macOS
git push -f origin next_macOS
- name: Build
run: |
make -j4
cd module
make all -j4
cd ..
- name: Test
run: make test
- name: Package
run: python3 tools/pack.py
- name: Release
uses: softprops/[email protected]
with:
name: macOS nightly build
tag_name: next_macOS
prerelease: true
draft: false
files: |
nasal-Darwin.tar
linux-x86_64-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Tag
run: |
git fetch --tags origin
git tag -f next_linux_x86_64
git push -f origin next_linux_x86_64
- name: Build
run: |
make -j4
cd module
make all -j4
cd ..
- name: Test
run: make test
- name: Package
run: python3 tools/pack.py
- name: Release
uses: softprops/[email protected]
with:
name: linux nightly build
tag_name: next_linux_x86_64
prerelease: true
draft: false
files: |
nasal-Linux.tar