File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Verify
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ clickhouse :
7+ description : " ClickHouse Version"
8+ required : true
9+ default : " latest"
10+ java :
11+ description : " Java Version"
12+ required : true
13+ default : " 8"
14+ pr :
15+ description : " Pull Request#"
16+ required : false
17+
18+ jobs :
19+ verify :
20+ runs-on : ubuntu-latest
21+ name : Verify pull request \#${{ github.event.inputs.pr }} using JDK ${{ github.event.inputs.java }} against ClickHouse ${{ github.event.inputs.clickhouse }}
22+ steps :
23+ - name : Check out repository
24+ uses : actions/checkout@v2
25+ if : github.event.inputs.pr == ''
26+ - name : Check out pull request \#${{ github.event.inputs.pr }}
27+ uses : actions/checkout@v2
28+ if : github.event.inputs.pr != ''
29+ with :
30+ ref : refs/remotes/pull/${{ github.event.inputs.pr }}/merge
31+ - name : Set up JDK ${{ github.event.inputs.java }}
32+ uses : actions/setup-java@v1
33+ with :
34+ java-version : ${{ github.event.inputs.java }}
35+ - name : Build with Maven
36+ run : mvn --batch-mode --update-snapshots -DclickhouseVersion=${{ matrix.clickhouse }} verify
You can’t perform that action at this time.
0 commit comments