This repository was archived by the owner on Nov 11, 2025. It is now read-only.
Try new workflows. #17
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
| # | |
| # Automatically generated: DO NOT EDIT. | |
| # | |
| # Generation code: https://www.github.com/io7m-com/.github/ | |
| # Workflow profile: Vulkan | |
| # | |
| name: main.linux.temurin.current | |
| on: | |
| push: | |
| branches: [ master, main, develop, feature/*, release/* ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| with: | |
| submodules: true | |
| - name: JDK | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 | |
| with: | |
| java-version: 25 | |
| distribution: 'temurin' | |
| - name: Collect project version | |
| id: project_version | |
| run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" | |
| - name: Collect project snapshot | |
| id: project_is_snapshot | |
| run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" | |
| - name: Install Vulkan SDK | |
| uses: humbletim/install-vulkan-sdk@30ba978f977e81b72d091fc8888feb1fb26f9aff | |
| with: | |
| version: 1.4.328.1 | |
| cache: true | |
| - name: Download RenderDoc | |
| run: .github/workflows/renderdoc.sh | |
| - name: Install RenderDoc | |
| run: sudo mv librenderdoc.so /usr/lib/librenderdoc.so | |
| - name: Build | |
| env: | |
| XOANON_REALLY_USE_LOCAL_DISPLAY: true | |
| run: ./.github/workflows/run-with-xvfb.sh mvn --batch-mode --strict-checksums --errors clean verify site | |
| - name: Upload video | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 | |
| if: ${{ always() }} | |
| with: | |
| name: test-video | |
| path: test-suite.webm | |
| - name: Upload test logs | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 | |
| if: always() | |
| with: | |
| name: test-logs | |
| path: ./com.io7m.renderdoc_jffm.tests/target/surefire-reports | |