File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
libxtracfg/c/native-image Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 8888 npm --loglevel verbose run prebuildify
8989 npm --loglevel verbose run test
9090 - name : log3
91+ continue-on-error : true
9192 run : |
92- ls -l - R ./libxtracfg/js/xtracfg-native-binding/prebuilds
93+ ls -R ./libxtracfg/js/xtracfg-native-binding/prebuilds
9394 # TODO: run tests for java, c, go
9495 - uses : actions/upload-artifact@v4
9596 with :
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ echo STATIC EXTERNAL >> %LOG_FILE%
4848echo ===================================================== >> %LOG_FILE%
4949set LIBS_EXT =
5050for %%P in (%* ) do (
51- echo %%P | findstr /C:" \. lib" 1 > nul
51+ echo %%P | findstr /R / C:" ^C:\\.*\. lib$ " 1 > nul
5252 if !errorlevel! == 0 (
53- set LIBS_EXT = % LIBS_EXT% %%~nP
54- echo %%~nP >> %LOG_FILE%
53+ set LIBS_EXT = ! LIBS_EXT! %%P
54+ echo %%P >> %LOG_FILE%
5555 )
5656)
5757echo %LIBS_EXT% >> %LOG_FILE%
@@ -63,6 +63,6 @@ REM To create a static library on Windows we need to call lib.exe input.obj /OUT
6363REM We don't want to overwrite the .lib needed to compile against the .dll, so
6464REM we append "_s" to indicate that it is a static library.
6565if not exist %OUTPUT_PATH% mkdir %OUTPUT_PATH%
66- set LIB_ARGS = %LIB_NAME% .obj /OUT:%OUTPUT_PATH% \%LIB_NAME% _static.lib
66+ set LIB_ARGS = %LIB_NAME% .obj %LIBS_EXT% /OUT:%OUTPUT_PATH% \%LIB_NAME% _static.lib
6767echo lib.exe %LIB_ARGS% >> %LOG_FILE%
6868cmd /c lib.exe %LIB_ARGS%
You can’t perform that action at this time.
0 commit comments