forked from prusa3d/PrusaSlicer
-
-
Notifications
You must be signed in to change notification settings - Fork 526
41 lines (37 loc) · 1005 Bytes
/
ccpp_mac_arm_rc.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
name: C/C++ Release candidate arm macos
on:
push:
branches:
- rc
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
with:
ref: 'rc'
- name: install autoconf
run: brew install autoconf
- name: check autoconf version
run: autoconf --version
- name: update automake for mpfr
run: |
curl -O -L http://ftpmirror.gnu.org/automake/automake-1.16.5.tar.gz
tar -xzf automake-1.16.5.tar.gz
cd automake-*
./configure
make
sudo make install
automake --version
- name: build deps & slicer
run: ./BuildMacOS.sh -adsi
- name: Upload artifact
uses: actions/[email protected]
with:
name: rc_arm_macos.dmg
path: build/${{ github.event.repository.name }}.dmg
- name: Upload artifact
uses: actions/[email protected]
with:
name: rc_arm_macos.tar
path: build/${{ github.event.repository.name }}.tar