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
name: Tests and Release
on:
# [push]
workflow_dispatch
jobs:
test:
name: "unit tests"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
steps:
- uses: hecrj/setup-rust-action@v2
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
# build_and_release:
# name: ${{ matrix.platform.os_name }} build and release
# runs-on: ${{ matrix.platform.os }}
# needs: test
# if: (startsWith(github.ref, 'refs/tags/cli-v') || github.ref == 'refs/heads/test-release')
# strategy:
# matrix:
# platform:
# - os_name: windows-x86_64
# os: windows-latest
# target: x86_64-pc-windows-msvc
# bin: toolkit.exe
# name: toolkit-Windows-x86_64.zip
# - os_name: macOS-x86_64
# # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
# os: macos-13
# target: x86_64-apple-darwin
# bin: toolkit
# name: toolkit-macOS-x86_64.zip
# - os_name: macOS-aarch64
# os: macos-latest
# target: aarch64-apple-darwin
# bin: toolkit
# name: toolkit-macOS-aarch64.zip
# steps:
# - uses: actions/checkout@v4
# - uses: Swatinem/rust-cache@v2
# - name: Build binary
# uses: houseabsolute/actions-rust-cross@v0
# with:
# command: "build"
# target: ${{ matrix.platform.target }}
# args: "--locked --release"
# strip: true
# # Windows
# - name: Move binary to bin directory
# run: |
# cd target/${{ matrix.platform.target }}/release
# 7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
# if: matrix.platform.os == 'windows-latest'
# # Macos & Linux
# - name: Move binary to bin directory
# run: |
# cd target/${{ matrix.platform.target }}/release
# zip ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
# if: matrix.platform.os != 'windows-latest'
# - name: Publish release binary
# uses: actions/upload-artifact@v4
# with:
# name: toolkit-${{ matrix.platform.os_name }}
# path: ${{ matrix.platform.name }}
# - name: Publish GitHub release
# uses: softprops/action-gh-release@v2
# with:
# draft: true
# files: ${{ matrix.platform.name }}
# body_path: CHANGELOG.md