forked from ogham/dog
-
-
Notifications
You must be signed in to change notification settings - Fork 2
92 lines (92 loc) · 2.57 KB
/
rust.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
name: build static binary
on:
workflow_dispatch:
push:
branches:
- master
tags:
- 'latest'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: openssl dependency
run: |
sudo apt-get install libssl-dev
- name: Updating cargo
run: |
cargo update
- name: Build
run: |
cargo build --target=x86_64-unknown-linux-gnu --release
mkdir out
mv -v target/x86_64-unknown-linux-gnu/release/doge out/doge_linux_64bit
- name: Upload to artifact
uses: actions/upload-artifact@v3
with:
name: binary_linux
path: ./out/*
build-macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Updating cargo
run: |
cargo update
- name: Setup Dependencies
run: |
rustup target add aarch64-apple-darwin
- name: Build
run: |
cargo build --target=aarch64-apple-darwin --release
cargo build --target=x86_64-apple-darwin --release
mkdir out
mv -v target/aarch64-apple-darwin/release/doge out/doge_darwin_arm64
mv -v target/x86_64-apple-darwin/release/doge out/doge_darwin_x86_64
- name: Upload to artifact
uses: actions/upload-artifact@v3
with:
name: binary_macos
path: ./out/*
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup rust
run: |
rustup target add aarch64-pc-windows-msvc
- name: Build
run: |
cargo build --release --target x86_64-pc-windows-msvc
mkdir out
move target\x86_64-pc-windows-msvc\release\doge.exe out\doge_windows_x86_64.exe
- name: Upload to artifact
uses: actions/upload-artifact@v3
with:
name: binary_windows
path: ./out/*
release:
runs-on: ubuntu-latest
needs:
- build-linux
- build-windows
- build-macos
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
path: ./artifacts
- name: organize files
run: |
tree artifacts
mkdir out
mv -v artifacts/**/doge_* out/
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
files: ./out/doge_*