* use buildjet 4vcpu, 16gb runners * Delete .gitpod.yml * Update lint-pr.yml * Update clean-artifacts.yml * Update proto-docker.yml * Update proto.yml * Update stale.yml * Update proto.yml * Update atlas.yml * Update check-docs.yml * Update proto-registry.yml * Update .github/workflows/dependencies-review.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/linkchecker.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/labeler.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/docker.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/deploy-docs.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/codeql-analysis.yml Co-authored-by: Marko <marko@baricevic.me> * go file change * yaml * Update simapp/app.go Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: faddat <jacobgadikian@gmail.com> Co-authored-by: Julien Robert <julien@rbrt.fr>
37 lines
1020 B
YAML
37 lines
1020 B
YAML
name: Release Sims
|
|
# Release Sims workflow runs long-lived (multi-seed & large block size) simulations
|
|
# This workflow only runs on a pull request when the branch contains rc** (rc1/vX.X.x)
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "rc**"
|
|
|
|
jobs:
|
|
test-sim-multi-seed-long:
|
|
runs-on: buildjet-4vcpu-ubuntu-2004
|
|
if: "!contains(github.event.head_commit.message, 'skip-sims')"
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/bin
|
|
key: ${{ runner.os }}-go-runsim-binary
|
|
- name: Get data from Go build cache
|
|
# if: env.GIT_DIFF
|
|
if: ${{ false }}
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/golangci-lint
|
|
~/.cache/go-build
|
|
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
|
|
|
|
- run: |
|
|
make build
|
|
|
|
- name: test-sim-multi-seed-long
|
|
run: |
|
|
make test-sim-multi-seed-long
|