From b438ed424c979d2c914ea7228989dfc1511ef9b1 Mon Sep 17 00:00:00 2001 From: Cheng Fang Date: Wed, 6 Sep 2023 15:20:09 -0400 Subject: [PATCH] WFCORE-6478 Enable manual start of github actions CI workflow --- .github/workflows/build-manual.yml | 63 ++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/build-manual.yml diff --git a/.github/workflows/build-manual.yml b/.github/workflows/build-manual.yml new file mode 100644 index 00000000000..e8c1faa2c79 --- /dev/null +++ b/.github/workflows/build-manual.yml @@ -0,0 +1,63 @@ +# Manually start a build and/or testing with maven +# For more information, see https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven +name: Manual Build and Test + +on: + workflow_dispatch: + inputs: + os: + description: 'OS' + required: false + default: 'ubuntu-latest' + type: choice + options: + - ubuntu-latest + - windows-latest + jdk-distribution: + description: 'JDK Distribution' + required: false + default: 'temurin' + type: choice + options: + - temurin + - semeru + - microsoft + - oracle + - zulu + - corretto + - liberica + jdk-version: + description: 'JDK Version' + required: true + type: string + args: + description: 'Arguments like -DskipTests -pl testbom,threads -am' + required: false + type: string + timeout: + description: 'Job Timeout Minutes' + required: false + default: 120 + type: number + +jobs: + build: + name: Build and Test + runs-on: ${{ inputs.os }} + timeout-minutes: ${{ fromJSON(inputs.timeout) }} + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK ${{ inputs.jdk-distribution }} ${{ inputs.jdk-version }} + uses: actions/setup-java@v3 + with: + distribution: ${{ inputs.jdk-distribution }} + java-version: ${{ inputs.jdk-version }} + cache: 'maven' + - name: Build and test with Maven + run: mvn -B -ntp clean install ${{ inputs.args }} + - uses: actions/upload-artifact@v3 + if: failure() + with: + name: ${{ inputs.jdk-distribution }}-${{ inputs.jdk-version }}-${{ inputs.os }} + path: '**/surefire-reports/*.txt' \ No newline at end of file