Skip to content

Commit

Permalink
[update][workflow] Adjust maven compile options
Browse files Browse the repository at this point in the history
  • Loading branch information
wgzhao committed Oct 9, 2024
1 parent 47f7f76 commit febf6bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .github/ISSUE_TEMPLATE/NEW-ISSUE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,11 @@ body:
label: Version
description: What version of our software are you running? (当前您使用的版本,这对于定位问题很重要,请选择正确的版本)
options:
- 4.1.7 (Default)
- 4.1.8 (Default)
- 4.1.7
- 4.1.6
- 4.1.5
- 4.1.4
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0 or older
- 4.1.4 or older
validations:
required: true
- type: dropdown
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:

- name: 5. Build and packaging
run: |
mvn -B -V -T C1 -DskipTests clean package
mvn -B -V -T 1 -DskipTests clean package
mvn package assembly:single
bash shrink_package.sh y
- name: 6. Calucate SHA256SUM
- name: 6. Calculate SHA256SUM
run: |
cd target/addax
sha256sum addax-${{ steps.version.outputs.version }}.tar.gz > addax-${{ steps.version.outputs.version }}.tar.gz.sha256sum.asc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
with:
java-version: '8'
distribution: 'adopt'
- run: mvn -B -V -T 1 -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dmaven.source.skip=true verify
- run: mvn -B -V -T 1 -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dgpg.skip=true verify

0 comments on commit febf6bd

Please sign in to comment.