a3223b4f56
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: ci-binary-config-checker
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [created]
|
|
push:
|
|
paths:
|
|
- 'clients/**'
|
|
- 'common/**'
|
|
- 'contracts/**'
|
|
- 'integrations/**'
|
|
- 'mixnode/**'
|
|
- 'sdk/rust/nym-sdk/**'
|
|
- 'service-providers/**'
|
|
- '.github/workflows/ci-binary-config-checker.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'clients/**'
|
|
- 'common/**'
|
|
- 'gateway/**'
|
|
- 'integrations/**'
|
|
- 'mixnode/**'
|
|
- 'sdk/rust/nym-sdk/**'
|
|
- 'service-providers/**'
|
|
- '.github/workflows/ci-binary-config-checker.yml'
|
|
|
|
env:
|
|
NETWORK: mainnet
|
|
|
|
jobs:
|
|
publish-nym:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [arc-ubuntu-22.04]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install Dependencies (Linux)
|
|
run: sudo apt-get update && sudo apt-get -y install jq vim libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libudev-dev squashfs-tools
|
|
continue-on-error: true
|
|
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ vars.REQUIRED_RUSTC_VERSION }}
|
|
|
|
- name: Branch name
|
|
run: echo running on branch ${GITHUB_REF##*/}
|
|
|
|
- name: Run tests against binaries
|
|
run: ./build_and_run.sh ${{ github.head_ref || github.ref_name }}
|
|
working-directory: tests/
|
|
|
|
|