Skip to content

Commit

Permalink
Fix test-verific.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystalDelusion committed Aug 15, 2024
1 parent 3b63ab0 commit 7bd3c7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-verific.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and run tests with Verific (Linux)
on: [push, pull_request]

jobs:
pre_job:
pre-job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
Expand All @@ -20,8 +20,8 @@ jobs:
skip_after_successful_duplicate: 'false'

test-verific:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
needs: pre-job
if: needs.pre-job.outputs.should_skip != 'true'
runs-on: [self-hosted, linux, x64]
steps:
- name: Checkout Yosys
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
prepare-docs:
name: Generate docs artifact
needs: pre_job, test-verific
if: needs.pre_job.outputs.should_skip != 'true'
needs: [pre-job, test-verific]
if: needs.pre-job.outputs.should_skip != 'true'
runs-on: [self-hosted, linux, x64]
steps:
- name: Checkout Yosys
Expand Down

0 comments on commit 7bd3c7b

Please sign in to comment.