Remove bzt log call #9
Workflow file for this run
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: CI Master Slave Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - SETUP_PIPELINES | |
| jobs: | |
| master_slave_test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Java 8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: "8" | |
| cache: maven | |
| - name: Clean known corrupted Maven artifact | |
| run: | | |
| rm -f ~/.m2/repository/xml-apis/xmlParserAPIs/2.0.2/xmlParserAPIs-2.0.2.pom | |
| - name: Configure Testcontainers for CI | |
| run: | | |
| cat > ~/.testcontainers.properties <<'EOF' | |
| checks.disable=true | |
| ryuk.disabled=true | |
| tinyimage.container.image=alpine:3.20 | |
| EOF | |
| - name: Run MasterSlaveIT | |
| run: mvn -U -Dtest=MasterSlaveIT test | |
| - name: Upload master-slave artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ci-master-slave-artifacts-${{ github.run_id }} | |
| path: | | |
| target/jmeter-bzm-hls-*.jar | |
| target/jmeter-test | |
| target/failsafe-reports | |
| if-no-files-found: warn | |
| retention-days: 30 |