forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (45 loc) · 1.4 KB
/
dusk.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
# Instructions for GitHub to build Dusk's smart contract compilers.
on:
pull_request:
push:
branches:
- master
name: Dusk Contract Compilers
jobs:
target:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
target: [
x86_64-unknown-linux-gnu,
x86_64-apple-darwin,
aarch64-apple-darwin,
]
exclude:
- os: ubuntu-latest
target: x86_64-apple-darwin
- os: ubuntu-latest
target: aarch64-apple-darwin
- os: macos-latest
target: x86_64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 4
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt update && sudo apt install -y ninja-build
- name: Install dependencies
if: matrix.os == 'macos-latest'
run: brew install ninja openssl@3
- name: Run build
run: ./x build --host ${{ matrix.target }}
- name: Archive build directory
run: zip -r duskc-${{ matrix.target }}-${{ github.sha }}.zip build/${{ matrix.target }}
- name: Upload build
uses: actions/upload-artifact@v3
with:
name: duskc-${{ matrix.target }}-${{ github.sha }}
path: duskc-${{ matrix.target }}-${{ github.sha }}.zip