Add armhf cross-compilation support via candidate-armhf branch #53
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: Pull Request | |
| on: | |
| pull_request: | |
| branches: [ "**" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| name: 🧪 Build and test snap | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: 🧪 Build snap | |
| uses: snapcrafters/ci/test-snap-build@main | |
| - name: 🗒️ Run tests | |
| uses: snapcrafters/ci/run-tests@main | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| test-script: ./test.sh |