mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
# Pinned actions (bump tag and SHA together when upgrading):
|
|
# actions/checkout@v7.0.0 9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
|
|
#
|
|
name: Simulation Heavy
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 4 * * *"
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: sim-heavy-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
|
|
env:
|
|
CI_GO_VERSION: "1.26.6"
|
|
CI_TASK_VERSION: "3.46.3"
|
|
GOFLAGS: -mod=vendor
|
|
GOPROXY: "off"
|
|
GOTOOLCHAIN: local
|
|
TESTSUMMARY_QUIET: "1"
|
|
RNS_REQUIRED_SIGNER: e46112d44649266d71fe2193e00a4710
|
|
|
|
jobs:
|
|
sim-heavy:
|
|
name: Heavy simulation
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
|
|
- name: Setup CI
|
|
uses: ./.github/actions/setup-ci
|
|
with:
|
|
go_version: ${{ env.CI_GO_VERSION }}
|
|
task_version: ${{ env.CI_TASK_VERSION }}
|
|
|
|
- name: Run heavy simulation tests
|
|
run: task test-sim-heavy
|
|
|
|
- name: Run link speedtest smoke
|
|
run: task test-link-speed
|
|
|
|
- name: Verify workspace clean
|
|
uses: ./.github/actions/verify-workspace-clean
|