diff --git a/.galasa/cps.properties b/.galasa/cps.properties index 9ba7722..38a0a51 100644 --- a/.galasa/cps.properties +++ b/.galasa/cps.properties @@ -15,4 +15,9 @@ zos.image.SIMBANK.ipv4.hostname=127.0.0.1 zos.image.SIMBANK.telnet.tls=false zos.image.SIMBANK.telnet.port=2023 zos.image.SIMBANK.webnet.port=2080 -zos.image.SIMBANK.credentials=SIMBANK \ No newline at end of file +zos.image.SIMBANK.credentials=SIMBANK + +zosmf.server.SIMBANK.images=SIMBANK +zosmf.server.SIMBANK.hostname=127.0.0.1 +zosmf.server.SIMBANK.port=2040 +zosmf.server.SIMBANK.https=false diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c5db8fb..492f93b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -169,6 +169,19 @@ jobs: --reportjson ${{ github.workspace }}/.galasa/test-3.json \ --log - + - name: Run the BatchAccountsOpenTest + working-directory: ${{ github.workspace }}/temp + env: + GALASA_VERSION: ${{ needs.get-galasa-version.outputs.galasa-version }} + run: | + ./galasactl runs submit local \ + --obr mvn:dev.galasa/dev.galasa.simbank.obr/${GALASA_VERSION}/obr \ + --obr mvn:dev.galasa/dev.galasa.uber.obr/${GALASA_VERSION}/obr \ + --class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BatchAccountsOpenTest \ + --remoteMaven https://development.galasa.dev/main/maven-repo/obr \ + --reportjson ${{ github.workspace }}/.galasa/test-4.json \ + --log - + #---------------------------------------------------------------------------------- # Combine test reports and report to Slack channel # Skip these steps for forks. Only report results if this workflow was @@ -176,7 +189,7 @@ jobs: - name: Combine test reports if: ${{ failure() && github.repository_owner == 'galasa-dev' && github.event_name == 'schedule' }} run: | - jq -s '{ tests: map(.tests[]) }' ${{ github.workspace }}/.galasa/test-1.json ${{ github.workspace }}/.galasa/test-2.json ${{ github.workspace }}/.galasa/test-3.json > ${{ github.workspace }}/.galasa/tests.json + jq -s '{ tests: map(.tests[]) }' ${{ github.workspace }}/.galasa/test-1.json ${{ github.workspace }}/.galasa/test-2.json ${{ github.workspace }}/.galasa/test-3.json ${{ github.workspace }}/.galasa/test-4.json > ${{ github.workspace }}/.galasa/tests.json # The test report must be sent to Slack in the next job that uses the ubuntu-latest runner. # We need to run a Docker image to communicate with the Slack webhook and the macos-latest