Browse Source

完成自动发布

pull/2818/head
Jiaju Zhuang 2 years ago
parent
commit
1086cb2fe6
  1. 98
      .github/workflows/ci.yml
  2. 2
      pom.xml

98
.github/workflows/ci.yml

@ -1,53 +1,53 @@
##
## Copyright 2009-2021 the original author or authors.
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
# #
# Copyright 2009-2021 the original author or authors. #name: Java CI
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #on: [push, pull_request]
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 #jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# java: [ 8, 11, 17]
# distribution: [ 'adopt' ]
# fail-fast: false
# max-parallel: 4
# name: Test JDK ${{ matrix.java }}
# #
# Unless required by applicable law or agreed to in writing, software # steps:
# distributed under the License is distributed on an "AS IS" BASIS, # - uses: actions/checkout@main
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # - name: Set up JDK
# See the License for the specific language governing permissions and # uses: actions/setup-java@main
# limitations under the License. # with:
# # java-version: ${{ matrix.java }}
# distribution: ${{ matrix.distribution }}
name: Java CI # - name: Cache local Maven m2
# uses: actions/cache@v3
on: [push, pull_request] # with:
# path: ~/.m2
jobs: # key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
test: # restore-keys: |
runs-on: ubuntu-latest # ${{ runner.os }}-m2
strategy: # - name: Chmod
matrix: # run: chmod +x mvnw
java: [ 8, 11, 17] # - name: Test with Maven
distribution: [ 'adopt' ] # run: ./mvnw test -B -Dmaven.test.skip=false
fail-fast: false # - name: Maven Build
max-parallel: 4 # run: ./mvnw install -B -V
name: Test JDK ${{ matrix.java }} # - name: Java Doc
# run: ./mvnw javadoc:javadoc
steps:
- uses: actions/checkout@main
- name: Set up JDK
uses: actions/setup-java@main
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Cache local Maven m2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-m2
- name: Chmod
run: chmod +x mvnw
- name: Test with Maven
run: ./mvnw test -B -Dmaven.test.skip=false
- name: Maven Build
run: ./mvnw install -B -V
- name: Java Doc
run: ./mvnw javadoc:javadoc

2
pom.xml

@ -410,7 +410,7 @@
<configuration> <configuration>
<serverId>ossrh</serverId> <serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl> <nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose> <autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>

Loading…
Cancel
Save