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>
131 lines
4.0 KiB
YAML
131 lines
4.0 KiB
YAML
name: nightly-build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '14 1 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
rust: [stable, beta]
|
|
os: [ubuntu-22.04, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
IPINFO_API_TOKEN: ${{ secrets.IPINFO_API_TOKEN }}
|
|
continue-on-error: true
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install Dependencies (Linux)
|
|
run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler
|
|
if: matrix.os == 'ubuntu-22.04'
|
|
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.rust }}
|
|
override: true
|
|
components: rustfmt, clippy
|
|
|
|
- name: Install Protoc
|
|
uses: arduino/setup-protoc@v3
|
|
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Check formatting
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
- name: Build binaries
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --workspace
|
|
|
|
- name: Build examples
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --workspace --examples
|
|
|
|
# To avoid running out of disk space, skip generating debug symbols
|
|
- name: Set debug to false (unix)
|
|
if: matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-latest'
|
|
run: |
|
|
sed -i.bak 's/\[profile.dev\]/\[profile.dev\]\ndebug = false/' Cargo.toml
|
|
git diff
|
|
|
|
- name: Set debug to false (win)
|
|
if: matrix.os == 'windows-latest'
|
|
shell: pwsh
|
|
run: |
|
|
(Get-Content Cargo.toml) -replace '\[profile.dev\]', "`$&`ndebug = false" | Set-Content Cargo.toml
|
|
git diff
|
|
|
|
- name: Run unit tests
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --workspace
|
|
|
|
- name: Run slow unit tests
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --workspace -- --ignored
|
|
|
|
- name: Clean
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: clean
|
|
|
|
- name: Clippy
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: clippy
|
|
args: --workspace --all-targets -- -D warnings
|
|
|
|
notification:
|
|
needs: build
|
|
runs-on: custom-linux
|
|
steps:
|
|
- name: Collect jobs status
|
|
uses: technote-space/workflow-conclusion-action@v3
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v6
|
|
- name: install npm
|
|
uses: actions/setup-node@v4
|
|
if: env.WORKFLOW_CONCLUSION == 'failure'
|
|
with:
|
|
node-version: 20
|
|
- name: Matrix - Node Install
|
|
if: env.WORKFLOW_CONCLUSION == 'failure'
|
|
run: npm install
|
|
working-directory: .github/workflows/support-files
|
|
- name: Matrix - Send Notification
|
|
if: env.WORKFLOW_CONCLUSION == 'failure'
|
|
env:
|
|
NYM_NOTIFICATION_KIND: nightly
|
|
NYM_PROJECT_NAME: "Nym nightly build"
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
GIT_COMMIT_MESSAGE: "${{ github.event.head_commit.message }}"
|
|
GIT_BRANCH: "${GITHUB_REF##*/}"
|
|
IS_SUCCESS: "${{ env.WORKFLOW_CONCLUSION == 'success' }}"
|
|
MATRIX_SERVER: "${{ secrets.MATRIX_SERVER }}"
|
|
MATRIX_ROOM: "${{ secrets.MATRIX_ROOM_NIGHTLY }}"
|
|
MATRIX_USER_ID: "${{ secrets.MATRIX_USER_ID }}"
|
|
MATRIX_TOKEN: "${{ secrets.MATRIX_TOKEN }}"
|
|
MATRIX_DEVICE_ID: "${{ secrets.MATRIX_DEVICE_ID }}"
|
|
uses: docker://keybaseio/client:stable-node
|
|
with:
|
|
args: .github/workflows/support-files/notifications/entry_point.sh
|