Skip to content

Commit

Permalink
build rewarder out of bugfix branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jstuczyn committed Feb 13, 2024
1 parent 316c461 commit d73b603
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build-nym-validator-rewarder-bugfixbranch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build Nym Validator Rewarder Bugfix

on:
workflow_dispatch:

env:
NETWORK: mainnet

jobs:
publish-nym:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.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: bugfix/signing-rewards

- 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-validator-rewarder --release

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: |
target/release/nym-validator-rewarder
retention-days: 30

0 comments on commit d73b603

Please sign in to comment.