refactor: Update app-path and working-directory to use github.workspa… #27
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: Build | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build app and tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, macos-26, windows-2022] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: OpenAstroFocuser | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Create Zephyr base path | |
| run: | | |
| mkdir "${{ runner.temp }}/z" | |
| - name: Setup Zephyr project | |
| uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
| with: | |
| app-path: ${{ github.workspace }}/OpenAstroFocuser | |
| base-path: "${{ runner.temp }}/z" | |
| toolchains: arm-zephyr-eabi:xtensa-espressif_esp32s3_zephyr-elf | |
| ccache-cache-key: ${{ matrix.os }} | |
| - name: Build firmware | |
| working-directory: ${{ github.workspace }}/OpenAstroFocuser | |
| shell: bash | |
| run: | | |
| if [ "${{ runner.os }}" = "Windows" ]; then | |
| EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" | |
| fi | |
| west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS | |
| - name: Twister Tests | |
| working-directory: OpenAstroFocuser | |
| shell: bash | |
| run: | | |
| if [ "${{ runner.os }}" = "Windows" ]; then | |
| EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" | |
| fi | |
| west twister -T tests -v --inline-logs --integration $EXTRA_TWISTER_FLAGS |