forked from DiamondHunters/NodeInject_Hook_example
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (70 loc) · 2.19 KB
/
build.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
name: build
on:
workflow_dispatch: {}
jobs:
build:
name: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [linux, windows]
include:
- build: linux
os: ubuntu-18.04
rust: nightly
target: x86_64-unknown-linux-musl
archive-name: NodeInject-linux.tar.gz
- build: windows
os: windows-2019
rust: nightly-x86_64-msvc
target: x86_64-pc-windows-msvc
archive-name: NodeInject-windows.7z
fail-fast: false
steps:
- name: Checkout NodeInject
uses: actions/checkout@v2
with:
repository: DiamondHunters/NodeInject
- name: Checkout repository
uses: actions/checkout@v2
with:
path: './js'
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
target: ${{ matrix.target }}
- name: Build binary
shell: bash
run: |
cp -f ./js/hook.js ./src/hooklog.js
cargo build --verbose --release --target ${{ matrix.target }}
cd ./js/license-gen
cargo build --verbose --release --target ${{ matrix.target }}
cd ../..
env:
RUST_BACKTRACE: 1
- name: Build archive
shell: bash
run: |
mkdir archive
cp LICENSE README.md archive/
ls -lR
if [ "${{ matrix.build }}" = "windows" ]; then
cp "./target/${{ matrix.target }}/release/node_inject.exe" ./archive/
cp "./js/license-gen/target/${{ matrix.target }}/release/license-gen.exe" ./archive/
cd archive
7z a "${{ matrix.archive-name }}" LICENSE README.md node_inject.exe license-gen.exe
else
cp "./target/${{ matrix.target }}/release/node_inject" ./archive/
cp "./js/license-gen/target/${{ matrix.target }}/release/license-gen" ./archive/
cd archive
tar -czf "${{ matrix.archive-name }}" LICENSE README.md node_inject license-gen
fi
- name: Upload archive
uses: actions/upload-artifact@v1
with:
name: ${{ matrix.archive-name }}
path: archive/${{ matrix.archive-name }}