Add rule for Astroasis HID raw devices #2440
Workflow file for this run
This file contains hidden or 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: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Get INDI Sources | |
| uses: actions/checkout@v2 | |
| with: | |
| path: indi-3rdparty | |
| - name: Install Pre-requisites | |
| run: indi-3rdparty/scripts/requisites-install.sh | |
| - name: Get INDI Core Package | |
| uses: dawidd6/action-download-artifact@v6 | |
| with: | |
| repo: indilib/indi | |
| branch: master | |
| workflow: macos.yml | |
| name: indi-core-package-macos | |
| path: ./packages/ | |
| - name: Install INDI Core | |
| run: $(command -v sudo) bsdtar -xvf packages/indi-core-package.tar --strip-components=1 -C / || true | |
| - name: Build INDI 3rd Party Libraries | |
| run: export CMAKE_OSX_ARCHITECTURES="arm64"; indi-3rdparty/scripts/indi-3rdparty-libs-build.sh | |
| - name: Install INDI 3rd Party Libraries | |
| run: export CMAKE_OSX_ARCHITECTURES="arm64"; indi-3rdparty/scripts/indi-3rdparty-libs-install.sh | |
| - name: Build INDI 3rd Party Drivers | |
| run: indi-3rdparty/scripts/indi-3rdparty-build.sh | |
| - name: Install INDI 3rd Party Drivers | |
| run: indi-3rdparty/scripts/indi-3rdparty-install.sh |