Skip to content

Commit a24e991

Browse files
committed
Merge branch 'master' into test
2 parents 145173c + cdfd941 commit a24e991

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818

1919
jobs:
2020
build-tests:
21-
#name: Build ${{ inputs.type }} tests for ${{ inputs.chip }}
21+
name: Build ${{ inputs.type }} tests for ${{ inputs.chip }}
2222
runs-on: ubuntu-latest
2323
env:
2424
id: ${{ github.event.pull_request.number || github.ref }}-${{ github.event.pull_request.head.sha || github.sha }}-${{ inputs.chip }}-${{ inputs.type }}
@@ -37,7 +37,7 @@ jobs:
3737
- name: Evaluate if tests should be built
3838
id: check-build
3939
run: |
40-
cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' || false }}
40+
cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' }}
4141
enabled=true
4242
4343
if [[ $cache_exists == 'true' ]]; then

.github/workflows/hw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Evaluate if tests should be run
4040
id: check-tests
4141
run: |
42-
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' || false }}
42+
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
4343
enabled=true
4444
4545
if [[ $cache_exists == 'true' ]]; then

.github/workflows/qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Evaluate if tests should be run
3636
id: check-tests
3737
run: |
38-
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
38+
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
3939
enabled=true
4040
4141
if [[ $cache_exists == 'true' ]]; then

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pytest
1+
name: Runtime Tests
22

33
on:
44
workflow_dispatch:

.github/workflows/wokwi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Evaluate if tests should be run
4545
id: check-tests
4646
run: |
47-
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
47+
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
4848
enabled=true
4949
5050
if [[ $cache_exists == 'true' ]]; then

0 commit comments

Comments
 (0)