/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packaging/windows/build_prerelease.cmd
79 строк
2 KB
Mike Maxim
fix windows builds
05 мар 2024, 19:13
05 мар 2024, 19:13
f88a7ae
Код
Авторство
О чём код?
:: Build keybase.exe with prerelease options echo GOPATH %GOPATH% :: check os/exec path fix is in place pushd %GOPATH%\src\github.com\keybase\client\packaging\windows go run osexeccheck.go IF %ERRORLEVEL% NEQ 0 ( EXIT /B 1 ) popd :: CGO causes dll loading security vulnerabilities set CGO_ENABLED=0 go env pushd %GOPATH%\src\github.com\keybase\client\go\keybase :: Make sure the whole build fails if we can't build keybase del keybase.exe go version go generate winresource.exe -kbfsicon=../../media/icons/windows/keybase-root-icon.ico if DEFINED BUILD_NUMBER set KEYBASE_WINBUILD=%BUILD_NUMBER% for /f %%i in ('winresource.exe -cv') do set KEYBASE_VERSION=%%i echo KEYBASE_VERSION %KEYBASE_VERSION% for /f %%i in ('winresource.exe -cb') do set KEYBASE_BUILD=%%i echo KEYBASE_BUILD %KEYBASE_BUILD% go build -a -tags "prerelease production" -ldflags="-X github.com/keybase/client/go/libkb.PrereleaseBuild=%KEYBASE_BUILD% -s -w" popd :: Then build kbfsdokan. pushd %GOPATH%\src\github.com\keybase\client\go\kbfs\kbfsdokan :: Make sure the whole build fails if we can't build kbfsdokan del kbfsdokan.exe set CGO_ENABLED=1 go build -a -tags "prerelease production" -ldflags="-X github.com/keybase/client/go/kbfs/libkbfs.PrereleaseBuild=%KEYBASE_BUILD% -s -w" IF %ERRORLEVEL% NEQ 0 ( EXIT /B 1 ) popd :: git-remote-keybase pushd %GOPATH%\src\github.com\keybase\client\go\kbfs\kbfsgit\git-remote-keybase del get-remote-keybase.exe go build -a IF %ERRORLEVEL% NEQ 0 ( EXIT /B 1 ) popd :: Updater pushd %GOPATH%\src\github.com\keybase\client\go\updater\service del upd.exe go build -a -o upd.exe IF %ERRORLEVEL% NEQ 0 ( EXIT /B 1 ) popd :: Browser Extension pushd %GOPATH%\src\github.com\keybase\client\go\kbnm del kbnm.exe if "%KBNM_BUILD%" == "" ( set KBNM_BUILD=%KEYBASE_BUILD% ) echo KBNM_BUILD %KBNM_BUILD% go build -a -ldflags="-X main.Version=%KBNM_BUILD%" IF %ERRORLEVEL% NEQ 0 ( EXIT /B 1 ) popd :: keybaserq pushd %GOPATH%\src\github.com\keybase\client\go\tools\runquiet del keybaserq.exe ..\..\keybase\winresource.exe -d "Keybase quiet start utility" -n "keybaserq.exe" -i ../../../media/icons/Keybase.ico go build -ldflags "-H windowsgui" -o keybaserq.exe