Skip to content

Remove bzt log call

Remove bzt log call #9

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