File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed
Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 88 strategy :
99 matrix :
1010 os :
11- - runner : ubuntu-24.04
12- type : linux
13- platform : linux-amd64
11+ # - runner: ubuntu-24.04
12+ # type: linux
13+ # platform: linux-amd64
1414 # - runner: ubuntu-24.04-arm
1515 # type: linux
1616 # platform: linux-arm64
8989 npm --loglevel verbose run test
9090 - name : log3
9191 run : |
92- ls -lR ./libxtracfg/js/xtracfg-native-binding/prebuilds
92+ ls -l -R ./libxtracfg/js/xtracfg-native-binding/prebuilds
9393 # TODO: run tests for java, c, go
9494 - uses : actions/upload-artifact@v4
9595 with :
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ cd %OUT_DIR%
1111
1212echo lib
1313
14- ls -l -R %JAVA_HOME% /lib
14+ ls -l -R %JAVA_HOME%
1515
1616REM static
1717cl.exe /c /W4 /I./ /I%JAVA_HOME% /include /I%JAVA_HOME% /include/%PLATFORM% /Folibxtracfg.obj ../wrapper/libxtracfg.c
1818REM copy libxtracfgjni_static.lib libxtracfg.lib
19- lib.exe /OUT:libxtracfg.lib libxtracfg.obj libxtracfgjni_static.lib
19+ lib.exe /OUT:libxtracfg.lib /VERBOSE libxtracfg.obj libxtracfgjni_static.lib
2020
2121certutil -hashfile libxtracfg.lib SHA1 > libxtracfg.sha1sum.tmp
2222REM Extract just the hash from certutil output (it includes headers/footers)
Original file line number Diff line number Diff line change @@ -43,6 +43,19 @@ set CL_ARGS=%*
4343echo cl.exe %CL_ARGS% >> %LOG_FILE%
4444cmd /c cl.exe %CL_ARGS%
4545
46+ echo ===================================================== >> %LOG_FILE%
47+ echo STATIC EXTERNAL >> %LOG_FILE%
48+ echo ===================================================== >> %LOG_FILE%
49+ set LIBS_EXT =
50+ for %%P in (%* ) do (
51+ echo %%P | findstr /C:" \.lib" 1 > nul
52+ if !errorlevel! == 0 (
53+ set LIBS_EXT = %LIBS_EXT% %%~nP
54+ echo %%~nP >> %LOG_FILE%
55+ )
56+ )
57+ echo %LIBS_EXT% >> %LOG_FILE%
58+
4659echo ===================================================== >> %LOG_FILE%
4760echo STATIC LIBRARY >> %LOG_FILE%
4861echo ===================================================== >> %LOG_FILE%
You can’t perform that action at this time.
0 commit comments