-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (36 loc) · 1.13 KB
/
build-smooshed-nym-node.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
name: Build Nym-Node (feature/mixnet-listening-smoosh branch)
on:
workflow_dispatch:
jobs:
publish-nym:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04-16-core]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Install Dependencies (Linux)
run: sudo apt-get update && sudo apt-get -y install ripgrep libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libudev-dev squashfs-tools
continue-on-error: true
- name: Check out repository code
uses: actions/checkout@v4
with:
repository: nymtech/nym
ref: feature/mixnet-listening-smoosh
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build all binaries
uses: actions-rs/cargo@v1
with:
command: build
args: --bin nym-node --release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: |
target/release/nym-node
retention-days: 30