Only append PIN name to token label if necessary #105
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: Fedora Linux | |
on: | |
pull_request: | |
paths: | |
- '**.c' | |
- '**.h' | |
- '**.sh' | |
- .github/workflows/fedora.yml | |
- '**.am' | |
- doc/** | |
- configure.ac | |
push: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
fedora: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: .github/setup-fedora.sh | |
- run: .github/build.sh dist | |
- name: Upload test logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: fedora-test-logs | |
path: | | |
tests/*.log | |
src/tests/unittests/*.log | |
fedora-ix86: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: .github/setup-fedora.sh ix86 | |
- run: .github/build.sh ix86 |