tests: Fix detection of real mmap symbol #493
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: Close Snaps | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
close: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Install Snapcraft | |
uses: samuelmeuli/action-snapcraft@v1 | |
# Could use canonical/actions/close-snap, but that would be quite verbose | |
- name: Close obsolete channels | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | |
run: | | |
snapcraft close mir-libs "22/edge/pr${{ github.event.number }}" || true | |
snapcraft close confined-shell "edge/mir-pr${{ github.event.number }}" || true | |
for snap in mir-test-tools miriway ubuntu-frame; do | |
snapcraft close "$snap" "22/edge/mir-pr${{ github.event.number }}" || true | |
done |