-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (89 loc) · 3.03 KB
/
Copy pathprecompiled-nifs.yml
File metadata and controls
101 lines (89 loc) · 3.03 KB
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
name: Precomp NIFs
on:
push:
branches:
- main
paths:
- "native/**"
- ".github/workflows/precompiled-nifs.yml"
tags:
- "*"
pull_request:
paths:
- ".github/workflows/precompiled-nifs.yml"
workflow_dispatch:
jobs:
build_release:
name: NIF ${{ matrix.nif }} - ${{ matrix.job.target }} (${{ matrix.job.os }})
runs-on: ${{ matrix.job.os }}
permissions:
contents: write
strategy:
fail-fast: false
matrix:
nif: ["2.16", "2.17"]
job:
# macos-13 (Intel) runners are being retired and starve the queue; build x86_64 via cross-compile on Apple Silicon
- { target: x86_64-apple-darwin, os: macos-14 }
- { target: aarch64-apple-darwin, os: macos-14 }
- {
target: aarch64-unknown-linux-gnu,
os: ubuntu-24.04,
use-cross: true,
}
- {
target: aarch64-unknown-linux-musl,
os: ubuntu-24.04,
use-cross: true,
}
- { target: x86_64-pc-windows-gnu, os: windows-2025 }
- { target: x86_64-pc-windows-msvc, os: windows-2025 }
- { target: aarch64-pc-windows-msvc, os: windows-2025 }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-24.04 }
- {
target: x86_64-unknown-linux-musl,
os: ubuntu-24.04,
use-cross: true,
}
- {
target: riscv64gc-unknown-linux-gnu,
os: ubuntu-24.04,
use-cross: true,
}
steps:
- name: Checkout source code
uses: actions/checkout@v5
- name: Extract project version
shell: bash
run: |
version=$(grep -o '"[0-9][^"]*"' mix.exs | head -n1 | tr -d '"')
echo "PROJECT_VERSION=$version" >> $GITHUB_ENV
- name: Add target
run: rustup target add ${{ matrix.job.target }}
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: native/dprint_markdown_formatter
key: ${{ matrix.job.target }}-${{ matrix.nif }}
- name: Build the project
id: build-crate
uses: philss/rustler-precompiled-action@v1.1.5
with:
project-name: dprint_markdown_formatter
project-version: ${{ env.PROJECT_VERSION }}
target: ${{ matrix.job.target }}
nif-version: ${{ matrix.nif }}
use-cross: ${{ matrix.job.use-cross || false }}
cross-version: ${{ matrix.job.cross-version || 'from-source' }}
project-dir: native/dprint_markdown_formatter
- name: Artifact upload
uses: actions/upload-artifact@v5
with:
name: ${{ steps.build-crate.outputs.file-name }}
path: ${{ steps.build-crate.outputs.file-path }}
- name: Publish archives and packages
uses: softprops/action-gh-release@v3
with:
files: |
${{ steps.build-crate.outputs.file-path }}
if: startsWith(github.ref, 'refs/tags/')