-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support windows binary build #45
Merged
pyramation
merged 1 commit into
launchql:16-latest-windows
from
aquariuslt:feat/support-windows-build
Mar 29, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,68 @@ | ||
@echo off | ||
|
||
set commit=1ec38940e5c6f09a4c1d17a46d839a881c4f2db7 | ||
set branch=16-latest | ||
|
||
setlocal enabledelayedexpansion | ||
|
||
rem Remember current's parent directory and create a new, unique, temporary directory | ||
set buildDir=%cd% | ||
set projectDir=%cd%\.. | ||
set tmpDir=%temp%\tmpdir.libpg_query | ||
rmdir /s /q %tmpDir% | ||
md %tmpDir% | ||
|
||
|
||
rem Define the make target | ||
set makeTarget=build | ||
|
||
rem Change to the newly created temp directory | ||
cd /D %tmpDir% | ||
|
||
|
||
rem Clone the selected branch of the libpg_query Git repo | ||
git clone -b %branch% --single-branch https://github.com/pganalyze/libpg_query.git | ||
cd libpg_query | ||
|
||
rem Checkout the desired commit | ||
git checkout %commit% | ||
|
||
rem needed if being invoked from within gyp | ||
set MAKEFLAGS= | ||
set MFLAGS= | ||
|
||
rem set path with Windows Developer Command Prompt | ||
echo "please ensure you are running at Windows Developer Command Prompt environments" | ||
nmake /F Makefile.msvc clean | ||
nmake /F Makefile.msvc build | ||
|
||
|
||
rem Terminate if build fails | ||
if %errorlevel% NEQ 0 ( | ||
echo ERROR: 'nmake' command failed | ||
) | ||
|
||
rem Search for pg_query.obj (libpg_query.a), error if not found | ||
for /f "delims=" %%f in ('dir /b /s pg_query.lib') do set file=%%f | ||
if not defined file ( | ||
echo "ERROR: pg_query.lib not found" | ||
|
||
) | ||
|
||
rem Error if pg_query.h is missing | ||
for /f "delims=" %%f in ('dir /b /s pg_query.h') do set file=%%f | ||
if not defined file ( | ||
echo "ERROR: pg_query.h not found" | ||
|
||
) | ||
|
||
rem Copy pg_query.lib to windows dir | ||
copy /Y pg_query.lib "%projectDir%\libpg_query\windows\" | ||
|
||
rem Copy header | ||
copy /Y pg_query.h "%projectDir%\libpg_query\include\" | ||
|
||
rem Cleanup: revert to original directory | ||
cd /D %buildDir% | ||
|
||
exit /B 0 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this
outputs
field contains an empty string.because empty content in
outputs
will let node-gyp skip the actions.so it's a workaround keeping actions works.