forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (53 loc) · 1.5 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
54
55
56
57
58
59
# Instructions for GitHub to build Dusk's smart contract compilers.
on:
pull_request:
push:
tags:
- "v*.*.*"
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: tar -cvzf duskc.tar.gz build/${{ matrix.target }}/stage2*
- name: Set artifact name
run: echo "${{ github.ref_type }}"
# - name: Upload build
# if: github.ref_type == 'branch'
# uses: actions/upload-artifact@v3
# with:
# name: duskc-${{ matrix.target }}-${{ github.sha }}
# path: duskc.tar.gz