mirror of
https://github.com/lupyuen/nuttx-build-farm.git
synced 2025-01-13 07:38:31 +08:00
15 lines
323 B
Bash
Executable file
15 lines
323 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Run NuttX Build Farm for macOS
|
|
|
|
## Set the GitHub Token
|
|
## export GITHUB_TOKEN=...
|
|
. $HOME/github-token-macos.sh
|
|
|
|
set -e # Exit when any command fails
|
|
set -x # Echo commands
|
|
|
|
## Run All NuttX CI Jobs on macOS
|
|
./run-ci-macos.sh
|
|
|
|
## Run One Single NuttX CI Job on macOS
|
|
# ./run-job-macos.sh arm-01
|