From d4710bbb192ddbfc9ee72347ffb27e4955836305 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 28 Feb 2022 23:50:25 -0500 Subject: [PATCH] JNI for test coverage #3965 --- .github/workflows/build-rusEFI-console.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build-rusEFI-console.yaml b/.github/workflows/build-rusEFI-console.yaml index ebd4c18399..7ad140811b 100644 --- a/.github/workflows/build-rusEFI-console.yaml +++ b/.github/workflows/build-rusEFI-console.yaml @@ -25,6 +25,15 @@ jobs: working-directory: ./java_tools/configuration_definition run: ant antlr + - name: Print GCC version + working-directory: . + run: gcc -v + + - name: Build Tests + working-directory: ./unit_tests/ +# we have a unit test of JNI thus we need to build shared library + run: make -j4 + - name: Test console # at the moment 'jar' task does not depend on tests?! maybe because tests take some time? working-directory: ./java_console