Update wanderer rotator lite v1 to latest firmware version and correct a bug when homing with rotator mini and lite v2 #2244
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: MacOS | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Get INDI Sources | |
uses: actions/checkout@v3 | |
with: | |
path: 'indi' | |
- name: Install Pre-requisites | |
run: indi/scripts/requisites-install.sh | |
- name: Build INDI Core | |
run: | | |
indi/scripts/indi-core-build.sh | |
indi/scripts/indi-core-package-build.sh | |
- name: Install INDI Core | |
run: indi/scripts/indi-core-install.sh | |
- name: Run INDI Core Test | |
run: indi/scripts/indi-core-test.sh | |
- name: Archive INDI Core Package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: indi-core-package-macos | |
path: packages/indi-core-package.tar |