-
-
Notifications
You must be signed in to change notification settings - Fork 41
38 lines (29 loc) · 796 Bytes
/
ci_metal.yaml
File metadata and controls
38 lines (29 loc) · 796 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
name: CI Metal for v3
on:
workflow_dispatch:
jobs:
macOS-metal-build:
runs-on: macos-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
ref: 'v3'
- name: Update submodules
run: git submodule update --init --recursive
- name: Dependencies
run: |
brew install cmake
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Python dependencies
run: pip install requests
- name: Configure + Build
run: python -m scripts.build_all
- name: Upload Artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python -m scripts.upload_all --tag v3.0.0