-
-
Notifications
You must be signed in to change notification settings - Fork 26
38 lines (29 loc) · 776 Bytes
/
mac.nightly.yml
File metadata and controls
38 lines (29 loc) · 776 Bytes
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Nightly MacOS AMD64 Build
on:
workflow_dispatch: # Put here!!
permissions: write-all
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-15-intel]
platform: [amd64]
steps:
- uses: actions/checkout@v4
with:
ref: iteration45
- name: Set version
run: |
VER=$(cat VERSION)
echo "BUILD_TAG=$VER" >> $GITHUB_ENV
- name: Install dependencies
run: |
brew install llvm
brew install lld
- name: Build
run: make all_mac_${{ matrix.platform }}