describe fieldgroup variable option string, including the way to show… #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - | |
| name: Create build image | |
| run: ./docker/create-linux-build-image.sh | |
| - | |
| name: Build | |
| run: docker run -v $(pwd):/work --rm ghcr.io/semaforinformatik/intens/linux-build:latest | |
| sh -c "cmake -B build-linux-x64 . -DCMAKE_EXPORT_COMPILE_COMMANDS=on -DUSE_LSP=ON && | |
| cmake --build build-linux-x64 -j9 && cd build-linux-x64 && PATH=/work/build-linux-x64/src:\$PATH QT_QPA_PLATFORM=offscreen ctest -V --output-junit testRes.xml" | |
| - name: Test Report | |
| uses: dorny/test-reporter@v2 | |
| if: ${{ !cancelled() }} # run this step even if previous step failed | |
| with: | |
| name: CTest Tests # Name of the check run which will be created | |
| path: build-linux-x64/testRes.xml # Path to test results | |
| reporter: java-junit # Format of test results |