-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[shell-release]release version 3.1.0
- Loading branch information
Showing
507 changed files
with
38,180 additions
and
6,814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
```yaml | ||
- name: Cache node modules admin | ||
uses: actions/cache@v3 | ||
with: | ||
path: admin-web/src/main/frontend/node_modules | ||
key: ${{ runner.os }}-node-admin-${{ hashFiles('admin-web/src/main/frontend/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-admin- | ||
- name: Cache node modules blog | ||
uses: actions/cache@v3 | ||
with: | ||
path: blog-web/src/main/frontend/node_modules | ||
key: ${{ runner.os }}-node-blog-${{ hashFiles('blog-web/src/main/frontend/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-blog- | ||
``` |
2 changes: 1 addition & 1 deletion
2
.github/workflows/build-preview-packge.yml → ...b/workflows/build-preview-package-jar.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: ZrLog build preview package | ||
name: build preview jar | ||
on: | ||
push: | ||
branches: | ||
|
2 changes: 1 addition & 1 deletion
2
.github/workflows/build-release-packge.yml → ...b/workflows/build-release-package-jar.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: ZrLog build release package | ||
name: build release jar | ||
on: | ||
push: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build on macos amd64 preview native | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-13 ] | ||
architecture: [ x86_64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
brew install coreutils | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh preview 预览版 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build on macos amd64 release native | ||
on: | ||
push: | ||
branches: | ||
- release | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-13 ] | ||
architecture: [ x86_64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
brew install coreutils | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh release 正式版本 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build on macos arm64 preview native | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-latest ] | ||
architecture: [ arm64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
brew install coreutils | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh preview 预览版 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build on macos arm64 release native | ||
on: | ||
push: | ||
branches: | ||
- release | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-latest ] | ||
architecture: [ arm64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
brew install coreutils | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh release 正式版本 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: build on Linux amd64 preview native | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ ubuntu-20.04 ] | ||
architecture: [ amd64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh preview 预览版 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: build on Linux amd64 release native | ||
on: | ||
push: | ||
branches: | ||
- release | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ ubuntu-20.04 ] | ||
architecture: [ amd64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh release 正式版本 /tmp/download unix | ||
bash -e bin/upload-bin.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: build on Windows amd64 preview native | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ windows-latest ] | ||
architecture: [ x86 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh preview 预览版 /tmp/download windows | ||
bash -e bin/upload-bin-windows.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: build on Windows amd64 release native | ||
on: | ||
push: | ||
branches: | ||
- release | ||
jobs: | ||
build: | ||
name: ZrLog on ${{ matrix.os }} ${{ matrix.architecture }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ windows-latest ] | ||
architecture: [ x86 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' # See 'Options' for all available distributions | ||
cache: 'maven' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
native-image-job-reports: 'true' | ||
|
||
- name: Build and upload binary | ||
run: | | ||
mkdir -p /tmp/download | ||
bash -e bin/build-final-native.sh release 正式版本 /tmp/download windows | ||
bash -e bin/upload-bin-windows.sh ${{ secrets.SECRET_ID }} ${{ secrets.SECRET_KEY }} ${{ secrets.BUCKET }} /tmp/download release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This configuration file was automatically generated by Gitpod. | ||
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) | ||
# and commit this file to your remote git repository to share the goodness with others. | ||
|
||
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart | ||
|
||
tasks: | ||
- init: ./mvnw install -DskipTests=false | ||
|
||
|
Oops, something went wrong.