Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-xmos committed Oct 5, 2023
1 parent f1c16bf commit 260daf0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
name: Change detection
# Set job outputs to values from filter step
outputs:
i2c: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.i2c || 'true'}}
i2s: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.i2s || 'true'}}
spi: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.spi || 'true'}}
uart: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.uart || 'true'}}
i2c: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.i2c }}
i2s: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.i2s }}
spi: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.spi }}
uart: ${{ github.event.inputs.run_driver_tests == 'yes' || steps.filter.outputs.uart }}
steps:
- name: Checkout
if: ${{ github.event.inputs.run_driver_tests != 'yes' }}
Expand All @@ -66,6 +66,9 @@ jobs:
uart:
- 'modules/uart/**'
- 'test/lib_uart/**'
- run: |
echo "Eval of github.event.inputs.run_driver_tests: ${{ github.event.inputs.run_driver_tests }}"
i2ctests:
needs: changes
name: I2C tests
Expand Down

0 comments on commit 260daf0

Please sign in to comment.