-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (119 loc) · 3.86 KB
/
build.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: Build Executables
on:
release:
types: [created]
jobs:
build_ubuntu:
name: Build for Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl, aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get Cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
use-cross: true
- name: Build archive
shell: bash
run: |
mz_parquet_version=${{ github.ref_name }}
staging="mz_parquet-$mz_parquet_version-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE} "$staging/"
cp "target/${{ matrix.target }}/release/mz_parquet" "$staging/"
tar czf "$staging.tar.gz" "$staging"
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
- name: Upload executable to release
uses: ./.github/workflows/upload_artifacts
with:
name: ${{ env.ASSET }}
token: ${{ secrets.GITHUB_TOKEN }}
path: ${{ env.ASSET }}
build_windows:
name: Build for Windows
runs-on: windows-latest
strategy:
matrix:
include:
- name: Windows 64-bits
target: x86_64-pc-windows-msvc
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get Cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
- name: Build archive
shell: bash
run: |
mz_parquet_version=${{ github.ref_name }}
staging="mz_parquet-$mz_parquet_version-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE} "$staging/"
cp "target/${{ matrix.target }}/release/mz_parquet.exe" "$staging/"
7z a "$staging.zip" "$staging"
echo "ASSET=$staging.zip" >> $GITHUB_ENV
- name: Upload executable to release
uses: ./.github/workflows/upload_artifacts
with:
name: ${{ env.ASSET }}
token: ${{ secrets.GITHUB_TOKEN }}
path: ${{ env.ASSET }}
build_macos:
name: Build for MacOS
strategy:
matrix:
include:
- name: MacOS (Intel)
target: x86_64-apple-darwin
- name: MacOS (Apple Silicon)
target: aarch64-apple-darwin
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get Cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
- name: Build archive
shell: bash
run: |
mz_parquet_version=${{ github.ref_name }}
staging="mz_parquet-$mz_parquet_version-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE} "$staging/"
cp "target/${{ matrix.target }}/release/mz_parquet" "$staging/"
tar czf "$staging.tar.gz" "$staging"
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
- name: Upload to Release
uses: ./.github/workflows/upload_artifacts
with:
name: $${{ env.ASSET }}
token: ${{ secrets.GITHUB_TOKEN }}
path: ${{ env.ASSET }}