trigger GitHub CI build(s) against 34.219.126.220 http://s2.80e82ade-… #1638
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: Default | |
on: | |
push: | |
branches: | |
- github | |
- standalone | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
number: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: | | |
./fix-hosts.sh && TESTSPACE_URL=$(cat testspace-url) | |
curl -s https://testspace-client.s3.amazonaws.com/testspace-darwin-arm64-dev.tgz | sudo tar -zxvf- -C /usr/local/bin | |
testspace config url $TESTSPACE_URL | |
testspace -v | |
printenv | |
- name: Echo | |
run: echo ci script | |
- name: Publish | |
run: | | |
./ts-time-push.sh | |
env: | |
JOB: "JOB-${{ matrix.number }}" | |
if: always() |