Skip to content

Commit

Permalink
Update to not use run_in_build_env and switch to multi-line run script
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed May 26, 2023
1 parent 909b1f8 commit e9f8bcb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/java-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,14 @@ jobs:
timeout-minutes: 10
# TODO: this direct path loading is not maintainable. Our build system should define and
# support test classes.
run: scripts/run_in_build_env.sh \
"$JAVA_PATH/bin/java \
run: |
$JAVA_PATH/bin/java \
-cp 'third_party/java_deps/artifacts/*:out/linux-x64-tests/lib/src/controller/java/*' \
org.junit.runner.JUnitCore \
chip.tlv.TlvWriterTest \
chip.tlv.TlvReadWriteTest \
chip.tlv.TlvReaderTest \
chip.jsontlv.JsonToTlvToJsonTest \
"
chip.jsontlv.JsonToTlvToJsonTest
- name: Build Java Matter Controller and all clusters app
timeout-minutes: 50
run: |
Expand Down

0 comments on commit e9f8bcb

Please sign in to comment.