-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:Eugeny/tabby
- Loading branch information
Showing
15 changed files
with
977 additions
and
1,179 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ jobs: | |
run: yarn run lint | ||
|
||
macOS-Build: | ||
runs-on: macos-12 | ||
runs-on: macos-15 | ||
needs: Lint | ||
strategy: | ||
matrix: | ||
|
@@ -61,8 +61,6 @@ jobs: | |
|
||
- name: Install deps | ||
run: | | ||
sudo -H pip3 install setuptools | ||
sudo npm i -g yarn | ||
yarn --network-timeout 1000000 | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
|
@@ -82,7 +80,7 @@ jobs: | |
|
||
- name: Build and sign packages | ||
run: scripts/build-macos.mjs | ||
if: github.repository == 'Eugeny/tabby' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')) | ||
if: github.event_name == 'push' && (github.ref_protected || startsWith(github.ref, 'refs/tags')) | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -97,7 +95,7 @@ jobs: | |
|
||
- name: Build packages without signing | ||
run: scripts/build-macos.mjs | ||
if: "! (github.repository == 'Eugeny/tabby' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')))" | ||
if: "! (github.event_name == 'push' && (github.ref_protected || startsWith(github.ref, 'refs/tags')))" | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
# DEBUG: electron-builder,electron-builder:* | ||
|
@@ -244,7 +242,7 @@ jobs: | |
|
||
- name: Upload packages to packagecloud.io | ||
uses: TykTechnologies/packagecloud-action@main | ||
if: github.repository == 'Eugeny/tabby' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | ||
env: | ||
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} | ||
with: | ||
|
@@ -312,6 +310,10 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: Code signing with Software Trust Manager | ||
uses: digicert/[email protected] | ||
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) | ||
|
||
- name: Installing Node | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -335,20 +337,48 @@ jobs: | |
env: | ||
ARCH: ${{matrix.arch}} | ||
|
||
- name: Decode certificate | ||
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) | ||
env: | ||
SM_CLIENT_CERT_FILE_B64: ${{ secrets.SM_CLIENT_CERT_FILE_B64 }} | ||
run: | | ||
SM_CLIENT_CERT_FILE=$RUNNER_TEMP/certificate.p12 | ||
echo "$SM_CLIENT_CERT_FILE_B64" | base64 --decode > $SM_CLIENT_CERT_FILE | ||
echo "SM_CLIENT_CERT_FILE=$SM_CLIENT_CERT_FILE" >> "$GITHUB_ENV" | ||
shell: bash | ||
|
||
- name: Build and sign packages | ||
run: node scripts/build-windows.mjs | ||
if: github.repository == 'Eugeny/tabby' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')) | ||
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) | ||
shell: powershell | ||
run: | | ||
Get-FileHash $env:SM_CLIENT_CERT_FILE -Algorithm MD5 | ||
smksp_registrar.exe list | ||
smctl.exe healthcheck | ||
smctl.exe keypair ls | ||
smctl windows certsync --keypair-alias $env:SM_KEYPAIR_ALIAS | ||
smctl.exe certificate ls | ||
C:\Windows\System32\certutil.exe -csp "DigiCert Signing Manager KSP" -key -user | ||
smksp_cert_sync.exe | ||
# not used but necessary for electron-builder to run | ||
$env:WIN_CSC_LINK=$env:SM_CLIENT_CERT_FILE | ||
$env:WIN_CSC_KEY_PASSWORD=$env:SM_CLIENT_CERT_PASSWORD | ||
node scripts/build-windows.mjs | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }} | ||
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }} | ||
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }} | ||
SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }} | ||
SM_PUBLISHER_NAME: ${{ secrets.SM_PUBLISHER_NAME }} | ||
SM_API_KEY: ${{ vars.SM_API_KEY }} | ||
SM_HOST: ${{ vars.SM_HOST }} | ||
SM_CODE_SIGNING_CERT_SHA1_HASH: ${{ vars.SM_CODE_SIGNING_CERT_SHA1_HASH }} | ||
SM_KEYPAIR_ALIAS: ${{ vars.SM_KEYPAIR_ALIAS }} | ||
DEBUG: electron-builder,electron-builder:* | ||
|
||
- name: Build packages without signing | ||
run: node scripts/build-windows.mjs | ||
if: "! (github.repository == 'Eugeny/tabby' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')))" | ||
if: "! (github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')))" | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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,63 +1,64 @@ | ||
:: Copyright (c) 2012 Martin Ridgers | ||
:: License: http://opensource.org/licenses/MIT | ||
|
||
@echo off | ||
rem -- Copyright (c) 2012 Martin Ridgers | ||
rem -- Portions Copyright (c) 2020-2024 Christopher Antos | ||
rem -- License: http://opensource.org/licenses/MIT | ||
|
||
setlocal enableextensions | ||
set clink_profile_arg= | ||
set clink_quiet_arg= | ||
|
||
:: Mimic cmd.exe's behaviour when starting from the start menu. | ||
if /i "%1"=="startmenu" ( | ||
rem -- Mimic cmd.exe's behaviour when starting from the start menu. | ||
if /i "%~1"=="startmenu" ( | ||
cd /d "%userprofile%" | ||
shift | ||
) | ||
|
||
:: Check for the --profile option. | ||
if /i "%1"=="--profile" ( | ||
rem -- Check for the --profile option. | ||
if /i "%~1"=="--profile" ( | ||
set clink_profile_arg=--profile "%~2" | ||
shift | ||
shift | ||
) | ||
|
||
:: Check for the --quiet option. | ||
if /i "%1"=="--quiet" ( | ||
rem -- Check for the --quiet option. | ||
if /i "%~1"=="--quiet" ( | ||
set clink_quiet_arg= --quiet | ||
shift | ||
) | ||
|
||
:: If the .bat is run without any arguments, then start a cmd.exe instance. | ||
if "%1"=="" ( | ||
rem -- If the .bat is run without any arguments, then start a cmd.exe instance. | ||
if _%1==_ ( | ||
call :launch | ||
goto :end | ||
) | ||
|
||
:: Test for autorun. | ||
if defined CLINK_NOAUTORUN if /i "%1"=="inject" if /i "%2"=="--autorun" goto :end | ||
|
||
:: Endlocal before inject tags the prompt. | ||
endlocal | ||
rem -- Test for autorun. | ||
if defined CLINK_NOAUTORUN if /i "%~1"=="inject" if /i "%~2"=="--autorun" goto :end | ||
|
||
:: Pass through to appropriate loader. | ||
rem -- Forward to appropriate loader, and endlocal before inject tags the prompt. | ||
if /i "%processor_architecture%"=="x86" ( | ||
endlocal | ||
"%~dp0\clink_x86.exe" %* | ||
) else if /i "%processor_architecture%"=="arm64" ( | ||
endlocal | ||
"%~dp0\clink_arm64.exe" %* | ||
) else if /i "%processor_architecture%"=="amd64" ( | ||
if defined processor_architew6432 ( | ||
endlocal | ||
"%~dp0\clink_x86.exe" %* | ||
) else ( | ||
endlocal | ||
"%~dp0\clink_x64.exe" %* | ||
) | ||
) | ||
|
||
:end | ||
goto :eof | ||
goto :end | ||
|
||
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | ||
:launch | ||
setlocal | ||
setlocal enableextensions | ||
set WT_PROFILE_ID= | ||
set WT_SESSION= | ||
start "Clink" cmd.exe /s /k ""%~dpnx0" inject %clink_profile_arg%%clink_quiet_arg%" | ||
endlocal | ||
exit /b 0 | ||
|
||
:end |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -413,6 +413,11 @@ simple-swizzle@^0.2.2: | |
dependencies: | ||
is-arrayish "^0.3.1" | ||
|
||
ssh-config@^5.0.0: | ||
version "5.0.1" | ||
resolved "https://registry.yarnpkg.com/ssh-config/-/ssh-config-5.0.1.tgz#44ee7db10d3340c79780afd142af05cf641408b9" | ||
integrity sha512-Bh9CRGFq7pLpWFPmLOyirzYhbpme8FXZe3lZckWvmABdcIEiGB8tNbmEEZdppnr6EiQ0WcGTMoYDp8Tjomq9gw== | ||
|
||
[email protected]: | ||
version "0.0.10" | ||
resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" | ||
|
Oops, something went wrong.