fix path 2 #114
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-Test-Deploy | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| merge_group: | |
| workflow_dispatch: | |
| inputs: | |
| message: | |
| description: 'Summarize the contents since the last version' | |
| required: true | |
| default: 'Auto-generated release' | |
| permissions: write-all | |
| concurrency: | |
| group: deploy-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
| - name: Build | |
| uses: ./.github/actions/create-archive | |
| release: | |
| needs: build | |
| runs-on: ubuntu-24.04 | |
| if: "${{ github.event.inputs.message != '' && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
| - name: Download Artifact | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v3.0.2 | |
| with: | |
| name: ConcurrentWitness2Test | |
| path: ./ | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| name: ${{ github.ref_name }} | |
| body: ${{ github.event.inputs.message }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload Release Asset | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| name: ConcurrentWitness2Test | |
| files: ./ConcurrentWitness2Test.zip | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create zenodo release and deploy tools | |
| uses: ./.github/actions/zenodo-release | |
| with: | |
| tool: ConcurrentWitness2Test | |
| prevrecord: 17407869 | |
| token: ${{secrets.zenodo_token}} | |
| test-benchexec: | |
| strategy: | |
| matrix: | |
| tool: [bubaak, cbmc, coveriteam-verifier-algo-selection, coveriteam-verifier-parallel-portfolio, cpa-lockator, cpachecker, cseq, dartagnan, deagle, divine, ebf, esbmc-incr, esbmc-kind, goblint, graves-par, graves, infer, lazycseq, lf-checker, pesco, pichecker, symbiotic, theta, uautomizer, ugemcutter, utaipan] | |
| runs-on: ubuntu-24.04 | |
| needs: build | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
| - name: Run benchexec | |
| uses: ./.github/actions/benchexec-test | |
| with: | |
| tool: ${{ matrix.tool }} | |
| ssh-key: ${{ secrets.DEPLOY_KEY }} | |
| collect-results: | |
| needs: test-benchexec | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
| - name: Generate report | |
| uses: ./.github/actions/benchexec-report |