-
Notifications
You must be signed in to change notification settings - Fork 8
120 lines (109 loc) · 3.32 KB
/
release-test.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
#
# REF:
# 1. https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrixinclude
#
name: Test Creating Release Draft
on:
push:
branches:
- release/freebsd
tags:
- 'v*'
defaults:
run:
shell: bash
jobs:
standard:
name: Std
strategy:
fail-fast: false
matrix:
target:
# - aarch64-apple-darwin
# - x86_64-apple-darwin
# - x86_64-pc-windows-msvc
# - aarch64-pc-windows-msvc
# - x86_64-unknown-linux-gnu
# - x86_64-unknown-linux-musl
# - aarch64-unknown-linux-gnu
# - armv7-unknown-linux-gnueabihf
# - riscv64gc-unknown-linux-gnu
# - loongarch64-unknown-linux-gnu
- x86_64-unknown-freebsd
extra: ['bin']
include:
# - target: aarch64-apple-darwin
# os: macos-latest
# target_rustflags: ''
# - target: x86_64-apple-darwin
# os: macos-latest
# target_rustflags: ''
# - target: x86_64-pc-windows-msvc
# extra: 'bin'
# os: windows-latest
# target_rustflags: ''
# - target: x86_64-pc-windows-msvc
# extra: msi
# os: windows-latest
# target_rustflags: ''
# - target: aarch64-pc-windows-msvc
# extra: 'bin'
# os: windows-latest
# target_rustflags: ''
# - target: aarch64-pc-windows-msvc
# extra: msi
# os: windows-latest
# target_rustflags: ''
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-20.04
# target_rustflags: ''
# - target: x86_64-unknown-linux-musl
# os: ubuntu-20.04
# target_rustflags: ''
# - target: aarch64-unknown-linux-gnu
# os: ubuntu-20.04
# target_rustflags: ''
# - target: armv7-unknown-linux-gnueabihf
# os: ubuntu-20.04
# target_rustflags: ''
# - target: riscv64gc-unknown-linux-gnu
# os: ubuntu-20.04
# target_rustflags: ''
# - target: loongarch64-unknown-linux-gnu
# os: ubuntu-22.04
- target: x86_64-unknown-freebsd
os: ubuntu-22.04
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Update Rust Toolchain Target
run: |
echo "targets = ['${{matrix.target}}']" >> rust-toolchain.toml
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
# WARN: Keep the rustflags to prevent from the winget submission error: `CAQuietExec: Error 0xc0000135`
with:
cache: false
rustflags: ''
- name: Setup Nushell
uses: hustcer/setup-nu@v3.13
with:
version: 0.98.0
- name: Release Nu Binary
id: nu
run: nu .github/workflows/release-pkg.nu
env:
RELEASE_TYPE: standard
OS: ${{ matrix.os }}
REF: ${{ github.ref }}
TARGET: ${{ matrix.target }}
_EXTRA_: ${{ matrix.extra }}
# REF: https://github.com/marketplace/actions/gh-release
- name: Publish Archive
uses: softprops/action-gh-release@v2.0.8
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: true
files: ${{ steps.nu.outputs.archive }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}