Update wanderer rotator lite v1 to latest firmware version and correct a bug when homing with rotator mini and lite v2 #909
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: Linux i386 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: ["debian-i386"] | |
container: | |
image: ghcr.io/${{ github.repository_owner }}/${{ matrix.container }} | |
steps: | |
- name: Get INDI Sources | |
uses: actions/checkout@v1 # Only v1 is compatible because of the different arch | |
- name: Build INDI Core | |
run: | | |
scripts/indi-core-build.sh | |
scripts/indi-core-package-build.sh | |
- name: Install INDI Core | |
run: scripts/indi-core-install.sh | |
- name: Run INDI Core Test | |
run: scripts/indi-core-test.sh |