update selfhost nodes #29
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
name : update selfhost nodes | |
on: | |
# manual only | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'toolset/**' | |
pull_request: | |
types: [ closed ] | |
branches: | |
- main | |
paths: | |
- 'toolset/**' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
agent: [agent1, agent2, agent3, agent4] | |
runs-on: ${{matrix.agent}} | |
continue-on-error: true | |
steps: | |
- name: Cleanup Docker | |
run: | | |
docker system prune -a -f | |
docker volume prune -f | |
- uses: actions/checkout@v4 | |
- name: Install the toolchain | |
run: | | |
export HOME=/root # Hack to workaround miniconda installation | |
./toolset/scripts/install.sh |