-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #627 from Hi-Windom/v0.29
V0.29
- Loading branch information
Showing
119 changed files
with
3,658 additions
and
4,075 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Sillot CI/CD | |
on: | ||
push: | ||
tags: | ||
- "v*" | ||
- "v*-sillot" | ||
|
||
jobs: | ||
create_release: | ||
|
@@ -20,6 +20,7 @@ jobs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
release_version: ${{ steps.release_info.outputs.release_version }} | ||
version: ${{ steps.version.outputs.value }} | ||
packageManager: ${{ steps.packageManager.outputs.value }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
@@ -48,8 +49,14 @@ jobs: | |
with: | ||
cmd: "jq .sypv app/package.json -r" | ||
|
||
- id: thislatestR | ||
uses: pozetroninc/github-action-get-latest-release@master | ||
- name: Extract packageManager from package.json | ||
uses: sergeysova/jq-action@v2 | ||
id: packageManager | ||
with: | ||
cmd: "jq .packageManager app/package.json -r" | ||
|
||
- id: thisLatestRelease | ||
uses: K-Sillot/github-action-get-latest-release@master | ||
with: | ||
# owner: Hi-Windom | ||
# repo: Sillot | ||
|
@@ -68,7 +75,7 @@ jobs: | |
run: | | ||
echo "release_title=$(git show --format=%s --no-patch | head -1)" >> $GITHUB_OUTPUT | ||
echo "release_version=v${{ steps.version.outputs.value }}_$(TZ=Asia/Shanghai date +'%Y%m%d')_syv${{ steps.syv.outputs.value }}" >> $GITHUB_OUTPUT | ||
changelog1=$(python scripts/parse-changelog-HEAD.py -t ${{ github.ref }} -b ${{ steps.thislatestR.outputs.release }} ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}) | ||
changelog1=$(python scripts/parse-changelog-HEAD.py -t ${{ github.ref }} -b ${{ steps.thisLatestRelease.outputs.release }} ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}) | ||
changelog2=$(python scripts/parse-changelog-sillot.py -t ${{ github.ref }} ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}) | ||
changelog3=$(python scripts/parse-changelog-sillot.py -t ${{ github.ref }} ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }}) | ||
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | ||
|
@@ -152,11 +159,17 @@ jobs: | |
suffix: "win.exe" | ||
|
||
steps: | ||
- name: Enable long paths for windows # 如果路径超过了 260 个字符(对于 .pnpm 几乎不可避免),可能会遇到问题。GitHub Actions 的 windows-latest 已经支持长路径。 | ||
if: contains( matrix.config.goos, 'windows') | ||
run: | | ||
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' | ||
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 | ||
|
||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }} | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }} | ||
|
||
- name: Set up MingGW | ||
uses: msys2/setup-msys2@v2 | ||
|
@@ -165,7 +178,7 @@ jobs: | |
install: p7zip mingw-w64-x86_64-lua | ||
|
||
- name: Set up TDM-GCC | ||
run: msys2 -c "bash go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/scripts/get-tdm-gcc.sh tdm https://github.com/jmeubank/tdm-gcc/releases/download/v10.3.0-tdm-1/tdm-gcc-10.3.0.exe" && echo "CC=${{ github.workspace }}/tdm/bin/gcc.exe" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
run: msys2 -c "bash ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/scripts/get-tdm-gcc.sh tdm https://github.com/jmeubank/tdm-gcc/releases/download/v10.3.0-tdm-1/tdm-gcc-10.3.0.exe" && echo "CC=${{ github.workspace }}/tdm/bin/gcc.exe" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
if: contains( matrix.config.goarch, '386') | ||
working-directory: ${{ github.workspace }} | ||
|
||
|
@@ -177,7 +190,7 @@ jobs: | |
- name: Set up goversioninfo | ||
run: go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo && go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo | ||
if: contains( matrix.config.goos, 'windows') | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
env: | ||
GO111MODULE: on | ||
CGO_ENABLED: 1 | ||
|
@@ -191,53 +204,53 @@ jobs: | |
node-version: 20 | ||
|
||
- name: Install Node pnpm | ||
run: npm install -g pnpm | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
run: npm install -g ${{ needs.create_release.outputs.packageManager }} | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
|
||
- name: Change NPMRC File | ||
run: pnpm config set registry https://registry.npmjs.org/ --location project | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
- name: Install Node Dependencies | ||
run: pnpm install --no-frozen-lockfile | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
|
||
- name: Building UI | ||
run: pnpm run build | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
|
||
- name: Remove Build Directory | ||
uses: JesseTG/rm@v1.0.2 | ||
uses: K-Sillot/rm@master | ||
with: | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build | ||
|
||
- name: Remove Kernel Directory for Linux | ||
uses: JesseTG/rm@v1.0.2 | ||
uses: K-Sillot/rm@master | ||
with: | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-linux | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-linux | ||
|
||
- name: Remove Kernel Directory for Windows | ||
uses: JesseTG/rm@v1.0.2 | ||
uses: K-Sillot/rm@master | ||
with: | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel | ||
|
||
# - name: Remove Kernel Directory for macOS | ||
# uses: JesseTG/rm@v1.0.2 | ||
# uses: K-Sillot/rm@master | ||
# with: | ||
# path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-darwin | ||
# path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-darwin | ||
|
||
# - name: Remove Kernel Directory for macOS ARM64 | ||
# uses: JesseTG/rm@v1.0.2 | ||
# uses: K-Sillot/rm@master | ||
# with: | ||
# path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-darwin-arm64 | ||
# path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/kernel-darwin-arm64 | ||
|
||
- name: Generate Icon Resource and Properties/Version Info For Windows | ||
run: ${{ github.workspace }}\go\${{ matrix.config.gobin }}\goversioninfo -platform-specific=true -icon="resource\icon.ico" -manifest="resource\goversioninfo.exe.manifest" | ||
if: contains( matrix.config.goos, 'windows') | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
|
||
- name: Building Kernel | ||
run: go build --tags fts5 -o "${{ matrix.config.kernel_path }}" -v -ldflags "${{ matrix.config.build_args }}" | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/kernel | ||
env: | ||
GO111MODULE: on | ||
CGO_ENABLED: 1 | ||
|
@@ -247,7 +260,7 @@ jobs: | |
|
||
- name: Building Electron | ||
run: pnpm run ${{ matrix.config.electron_args }} | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app | ||
|
||
- name: Upload Release Asset for Windows & Linux | ||
uses: shogo82148/actions-upload-release-asset@v1 | ||
|
@@ -256,15 +269,15 @@ jobs: | |
with: | ||
upload_url: ${{ needs.create_release.outputs.upload_url }} | ||
asset_name: ${{ matrix.string.repo_name }}-${{ needs.create_release.outputs.release_version }}-${{ matrix.config.suffix }} | ||
asset_path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build/${{ matrix.string.repo_name }}-${{ needs.create_release.outputs.version }}-${{ matrix.config.suffix }} | ||
asset_path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build/${{ matrix.string.repo_name }}-${{ needs.create_release.outputs.version }}-${{ matrix.config.suffix }} | ||
|
||
- name: zip WinPortable | ||
uses: thedoctor0/[email protected] | ||
if: contains( matrix.config.goos, 'windows') | ||
with: | ||
type: 'zip' | ||
filename: ${{ matrix.string.repo_name }}-${{ needs.create_release.outputs.release_version }}-win_Portable_.zip | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build/win-unpacked/ | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }}/app/build/win-unpacked/ | ||
exclusions: '*.git*' | ||
recursive_exclusions: 'LICENSES.chromium.html' | ||
|
||
|
@@ -298,28 +311,28 @@ jobs: | |
ndk-version: r25b | ||
add-to-path: true | ||
- name: Remove android Directory | ||
uses: JesseTG/rm@v1.0.2 | ||
uses: K-Sillot/rm@master | ||
if: contains( matrix.config.goos, 'windows') | ||
with: | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
|
||
- name: Checkout android repo | ||
uses: actions/checkout@v4 | ||
if: contains( matrix.config.goos, 'windows') | ||
with: | ||
repository: ${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
path: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
path: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
|
||
- name: Before android build | ||
if: contains( matrix.config.goos, 'windows') | ||
run: | | ||
cd ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }} | ||
cd ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name }} | ||
.\scripts\sillot-android-build-action.bat | ||
continue-on-error: false | ||
|
||
- name: Build with Gradle | ||
if: contains( matrix.config.goos, 'windows') | ||
working-directory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
working-directory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }} | ||
run: ./gradlew assembleAction --quiet --stacktrace | ||
continue-on-error: false | ||
|
||
|
@@ -328,7 +341,7 @@ jobs: | |
name: Sign APK | ||
id: sign_app | ||
with: | ||
releaseDirectory: ${{ github.workspace }}/go/src/github.com/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }}/app/build/outputs/apk/action | ||
releaseDirectory: ${{ github.workspace }}/${{ matrix.string.repo_owner }}/${{ matrix.string.repo_name_android }}/app/build/outputs/apk/action | ||
signingKeyBase64: ${{ secrets.APK_SIGN_KEY_JKS_BASE64 }} | ||
alias: ${{ secrets.APK_SIGN_KEY_ALIAS }} | ||
keyStorePassword: ${{ secrets.APK_SIGN_KEY_JKS_PW }} | ||
|
@@ -346,3 +359,10 @@ jobs: | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | ||
asset_name: ${{ matrix.string.repo_name }}-${{ needs.create_release.outputs.release_version }}-beta_github.apk | ||
asset_path: ${{steps.sign_app.outputs.signedReleaseFile}} | ||
|
||
- name: Upload logs if failure | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: logs | ||
path: ./**/*.log |
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ electron/dist | |
|
||
# IDE | ||
.idea/ | ||
.vscode/ | ||
|
||
# Log | ||
logs | ||
|
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
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
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
Oops, something went wrong.