Add Chip Tool snap tests #21
Workflow file for this run
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: Snap Tester | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allow manual trigger | |
workflow_dispatch: | |
jobs: | |
build: | |
outputs: | |
snap: ${{ steps.snapcraft.outputs.snap }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build snap | |
uses: snapcore/action-build@v1 | |
id: snapcraft | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.snapcraft.outputs.snap }} | |
path: ${{ steps.snapcraft.outputs.snap }} | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Download locally built snap | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ needs.build.outputs.snap }} | |
- name: Run tests | |
shell: bash | |
working-directory: tests | |
env: | |
SKIP_TEARDOWN_REMOVAL: true | |
LOCAL_SERVICE_SNAP: ../${{ needs.build.outputs.snap }} | |
run: | | |
go test -failfast -p 1 -timeout 30m -v | |
# # Print error logs from snap(s) | |
# - if: failure() | |
# shell: bash | |
# working-directory: ${{github.workspace}}/src/test | |
# run: ./print-errors.sh ${{inputs.name}} | |
- name: Upload snap logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: tests/*.log | |
retention-days: 30 |