ci: fix scheduled task by changing self hosted runner #4489
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
name: Lints | |
jobs: | |
fmt: | |
name: Format | |
runs-on: [ self-hosted, light ] | |
steps: | |
- name: Potential broken submodules fix | |
run: | | |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || : | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Run cargo fmt | |
run: cargo make check-fmt | |
clippy: | |
name: Clippy | |
runs-on: [ self-hosted, heavy ] | |
steps: | |
- name: Potential broken submodules fix | |
run: | | |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || : | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Update Node and Yarn | |
run: | | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
nvm install 18 && nvm alias default 18 | |
npm install -g yarn | |
echo "$(dirname $(nvm which node))" >> $GITHUB_PATH | |
- name: Build contracts | |
run: cargo make build-contracts | |
- name: Run Contract cargo clippy | |
run: cargo make clippy | |
udeps: | |
name: Udeps | |
runs-on: [ self-hosted, heavy ] | |
steps: | |
- name: Potential broken submodules fix | |
run: | | |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || : | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Run udeps | |
run: cargo make udeps | |
contracts: | |
name: Contracts | |
runs-on: [ self-hosted, light ] | |
steps: | |
- name: Potential broken submodules fix | |
run: | | |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || : | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Update Node and Yarn | |
run: | | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
nvm install 18 && nvm alias default 18 | |
npm install -g yarn | |
echo "$(dirname $(nvm which node))" >> $GITHUB_PATH | |
- name: Run yarn lint | |
run: cargo make check-contracts | |
- name: Check committed EvmErc20.bin | |
run: bash scripts/verify_evm_erc20.sh |