-
Notifications
You must be signed in to change notification settings - Fork 2
152 lines (129 loc) · 5.55 KB
/
release.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: Release Dash Evo Tool
on:
push:
tags:
- 'v*'
- 'v*-dev.*'
release:
types:
- published
workflow_dispatch:
inputs:
tag:
description: "Version (i.e. v0.1.0)"
required: true
jobs:
build-and-release:
name: Build and Release Dash Evo Tool
strategy:
matrix:
include:
- name: "linux-amd64"
runs-on: ["self-hosted", "Linux", "x64"] # Array of tags for AMD64
target: "x86_64-unknown-linux-gnu"
platform: "amd64"
- name: "linux-arm64"
runs-on: ["self-hosted", "Linux", "ARM64"] # Array of tags for ARM64
target: "aarch64-unknown-linux-gnu"
platform: "arm64"
- name: "macos-amd64"
runs-on: "macos-13"
target: "x86_64-apple-darwin"
platform: "mac-x86"
- name: "macos-arm64"
runs-on: "macos-latest"
target: "aarch64-apple-darwin"
platform: "mac-arm"
- name: "Windows"
runs-on: "windows-latest"
target: "x86_64-pc-windows-gnu"
platform: "windows"
runs-on: ${{ matrix.runs-on }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Install essentials
if: ${{ runner.os == 'Linux' }}
run: sudo apt-get update && sudo apt-get install -y build-essential pkg-config clang cmake unzip libsqlite3-dev && uname -a && cargo clean
- name: Install protoc (ARM)
if: ${{ matrix.platform == 'arm64' }}
run: curl -Lo /tmp/protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-aarch_64.zip && sudo unzip -o /tmp/protoc.zip -d /usr/local && rm /tmp/protoc.zip
env:
PROTOC: /usr/local/bin/protoc
- name: Install protoc (AMD)
if: ${{ matrix.platform == 'amd64' }}
run: curl -Lo /tmp/protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v22.2/protoc-22.2-linux-x86_64.zip && sudo unzip -f /tmp/protoc.zip -d /usr/local && rm /tmp/protoc.zip
env:
PROTOC: /usr/local/bin/protoc
- name: Install protoc (Mac x64)
if: ${{ matrix.target == 'x86_64-apple-darwin' }}
run: curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-osx-x86_64.zip && sudo unzip -o protoc-25.2-osx-x86_64.zip -d /usr/local bin/protoc && sudo unzip -o protoc-25.2-osx-x86_64.zip -d /usr/local 'include/*' && rm -f protoc-25.2-osx-x86_64.zip && uname -a
env:
PROTOC: /usr/local/bin/protoc
- name: Install protoc (Mac ARM)
if: ${{ matrix.target == 'aarch64-apple-darwin' }}
run: curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-osx-aarch_64.zip && sudo unzip -o protoc-25.2-osx-aarch_64.zip -d /usr/local bin/protoc && sudo unzip -o protoc-25.2-osx-aarch_64.zip -d /usr/local 'include/*' && rm -f protoc-25.2-osx-aarch_64.zip
env:
PROTOC: /usr/local/bin/protoc
- name: Build project
run: cargo build --release --target ${{ matrix.target }}
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: dash-evo-tool-${{ matrix.target }}
path: target/${{ matrix.target }}/release/dash-evo-tool
#continue-on-error: true
release:
name: Create GitHub Release
needs: build-and-release
runs-on: ubuntu-latest
steps:
- name: Download Linux X64
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-x86_64-unknown-linux-gnu
path: ./release/dash-evo-tool-x86_64-unknown-linux-gnu/
- name: Download Linux ARM
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-aarch64-unknown-linux-gnu
path: ./release/dash-evo-tool-aarch64-unknown-linux-gnu/
- name: Download Mac x64
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-x86_64-apple-darwin
path: ./release/dash-evo-tool-x86_64-apple-darwin/
- name: Download Mac ARM
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-aarch64-apple-darwin
path: ./release/dash-evo-tool-aarch64-apple-darwin/
- name: Rename Linux X64 file
run: mv ./release/dash-evo-tool-x86_64-unknown-linux-gnu/dash-evo-tool ./release/dash-evo-tool-x86_64-linux
- name: Rename Linux ARM file
run: mv ./release/dash-evo-tool-aarch64-unknown-linux-gnu/dash-evo-tool ./release/dash-evo-tool-aarch64-linux
- name: Rename Mac x64 file
run: mv ./release/dash-evo-tool-x86_64-apple-darwin/dash-evo-tool ./release/dash-evo-tool-x86_64-mac
- name: Rename Mac ARM file
run: mv ./release/dash-evo-tool-aarch64-apple-darwin/dash-evo-tool ./release/dash-evo-tool-aarch64-mac
- name: Check dir
run: ls -lah ./release/dash-evo-tool-aarch64-apple-darwin
- name: Publish release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event.inputs.tag }}
files: |
./release/dash-evo-tool-x86_64-linux
./release/dash-evo-tool-aarch64-linux
./release/dash-evo-tool-x86_64-mac
./release/dash-evo-tool-aarch64-mac
draft: false
prerelease: true