Skip to content

Commit

Permalink
Fix test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Jul 30, 2024
1 parent fae58d9 commit 4687234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
run: python scripts/emulator_matrix_generator.py

emulator:
if: ${{ needs.generate-matrices.outputs.packages_0 != '[]' && needs.generate-matrices.outputs.packages_0 != '' && needs.generate-matrices.outputs.emulator != '[]' }}
if: ${{ needs.generate-matrices.outputs.packages != '[]' && needs.generate-matrices.outputs.packages != '' && needs.generate-matrices.outputs.emulator != '[]' }}
name: ${{ matrix.emulator.arch }}/${{ matrix.emulator.emulator_api_level }}/${{matrix.emulator.build_api_level}} ${{ matrix.package.package_reference }}
needs:
- generate-matrices
strategy:
fail-fast: false
matrix:
package: ${{ fromJson(needs.generate-matrices.outputs.packages_0) }}
package: ${{ fromJson(needs.generate-matrices.outputs.packages) }}
emulator: ${{ fromJson(needs.generate-matrices.outputs.emulator) }}
runs-on: ubuntu-22.04
env:
Expand Down

0 comments on commit 4687234

Please sign in to comment.