Skip to content

Commit 76d502d

Browse files
committed
Fix ci
1 parent 4a4515e commit 76d502d

File tree

5 files changed

+26
-35
lines changed

5 files changed

+26
-35
lines changed

.appveyor.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,4 @@ install:
1414
- git submodule update --init --recursive
1515

1616
build_script:
17-
- ps: .\ci\build1k.ps1 -p win32 -a $env:BUILD_ARCH -cc msvc-120 -cm '-Bbuild','-DYASIO_ENABLE_HPERF_IO=1','-DYASIO_SSL_BACKEND=2'
18-
19-
test_script:
20-
- ps: .\ci\test.ps1 -dir 'build' -target 'win32'
17+
- ps: .\build.ps1 -p win32 -a $env:BUILD_ARCH -cc msvc-120 -xc '-DYASIO_SSL_BACKEND=2'

build.ps1

+8-20
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,6 @@ $is_ci = $env:GITHUB_ACTIONS -eq 'true'
7575
# start construct full cmd line
7676
$fullCmdLine = @("$((Resolve-Path -Path "$myRoot/ci/build1k.ps1").Path)")
7777

78-
if ($options.p -eq 'android') {
79-
$fullCmdLine += "'-xt'", "'gradle'"
80-
}
81-
8278
$search_prior_dir = $options.d
8379
$search_paths = if ($search_prior_dir) { @($search_prior_dir, $workDir, $myRoot) } else { @($workDir, $myRoot) }
8480
function search_proj($path, $type) {
@@ -96,7 +92,8 @@ $search_rule = @{ path = 'CMakeLists.txt'; type = 'Leaf' }
9692
$proj_dir = search_proj $search_rule.path $search_rule.type
9793

9894
if ($is_ci) {
99-
$options.xc += '-Bbuild, -DYASIO_ENABLE_KCP=TRUE','-DYASIO_ENABLE_HPERF_IO=1'
95+
$options.xc = [array]$options.xc
96+
$options.xc += '-DYASIO_ENABLE_KCP=TRUE','-DYASIO_ENABLE_HPERF_IO=1'
10097
}
10198

10299
$bci = $null
@@ -134,19 +131,10 @@ foreach ($option in $options.GetEnumerator()) {
134131
$strFullCmdLine = "$fullCmdLine"
135132
Invoke-Expression $strFullCmdLine
136133

137-
if ($is_ci) { # run tests
138-
$target_os = $options.p
139-
if (!$target_os) {
140-
# choose host target if not specified by command line automatically
141-
if ($IsWindows -or ("$env:OS" -eq 'Windows_NT')) {
142-
$target_os = 'win32'
143-
}
144-
elseif($IsLinux) {
145-
$target_os = 'linux'
146-
}
147-
elseif($IsMacOS) {
148-
$target_os = 'osx'
149-
}
150-
}
151-
& .\ci\test.ps1 -dir 'build' -target $target_os
134+
$buildResult = ConvertFrom-Json $env:buildResult
135+
136+
if ($is_ci -and !$buildResult.compilerID.StartsWith('mingw')) { # run tests
137+
$targetOS = $buildResult.targetOS
138+
$buildDir = $buildResult.buildDir
139+
& .\ci\test.ps1 -dir $buildDir -target $targetOS
152140
}

ci/build1k.ps1

+13-7
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ if ($options.d) {
174174

175175
$tools_dir = if ($options.prefix) { $options.prefix } else { Join-Path $HOME 'build1k' }
176176
if (!(Test-Path "$tools_dir" -PathType Container)) {
177-
mkdir $tools_dir
177+
mkdir $tools_dir | Out-Null
178178
}
179179

180180
b1k_print "proj_dir=$((Get-Location).Path), tools_dir=$tools_dir"
@@ -798,7 +798,7 @@ if (!$CONFIG_ALL_OPTIONS) {
798798
}
799799

800800
# step2. apply additional cross make options
801-
$xopts = $options.xc
801+
$xopts = [array]$options.xc
802802
if ($xopts.Count -gt 0) {
803803
b1k_print ("Apply additional cross make options: $($xopts), Count={0}" -f $xopts.Count)
804804
$CONFIG_ALL_OPTIONS += $xopts
@@ -817,7 +817,7 @@ else {
817817
b1k_print ("CONFIG_ALL_OPTIONS=$CONFIG_ALL_OPTIONS, Count={0}" -f $CONFIG_ALL_OPTIONS.Count)
818818

819819
# parsing build optimize flag from build_options
820-
$buildOptions = $options.xb
820+
$buildOptions = [array]$options.xb
821821
$nopts = $buildOptions.Count
822822
$optimize_flag = $null
823823
for ($i = 0; $i -lt $nopts; ++$i) {
@@ -833,15 +833,15 @@ for ($i = 0; $i -lt $nopts; ++$i) {
833833

834834
if (($BUILD_TARGET -eq 'android') -and ($options.xt -eq 'gradle')) {
835835
if ($optimize_flag -eq 'Debug') {
836-
./gradlew assembleDebug $CONFIG_ALL_OPTIONS
836+
./gradlew assembleDebug $CONFIG_ALL_OPTIONS | Out-Host
837837
}
838838
else {
839-
./gradlew assembleRelease $CONFIG_ALL_OPTIONS
839+
./gradlew assembleRelease $CONFIG_ALL_OPTIONS | Out-Host
840840
}
841841
}
842842
else {
843843
# step3. configure
844-
cmake -B $BUILD_DIR $CONFIG_ALL_OPTIONS
844+
cmake -B $BUILD_DIR $CONFIG_ALL_OPTIONS | Out-Host
845845

846846
# step4. build
847847
# apply additional build options
@@ -860,7 +860,13 @@ else {
860860
}
861861
b1k_print ("BUILD_ALL_OPTIONS=$BUILD_ALL_OPTIONS, Count={0}" -f $BUILD_ALL_OPTIONS.Count)
862862

863-
cmake --build $BUILD_DIR $BUILD_ALL_OPTIONS
863+
cmake --build $BUILD_DIR $BUILD_ALL_OPTIONS | Out-Host
864864
}
865865

866866
Set-Location $stored_cwd
867+
868+
$env:buildResult = ConvertTo-Json @{
869+
buildDir = $BUILD_DIR;
870+
targetOS = $BUILD_TARGET;
871+
compilerID = $TOOLCHAIN_NAME;
872+
}

yasio/bindings/yasio_axlua.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2525
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
SOFTWARE.
2727
*/
28-
#include "yasio/bindings/yasio_cclua.hpp"
28+
#include "yasio/bindings/yasio_axlua.hpp"
2929
#include "yasio/bindings/lyasio.hpp"
3030
#include "yasio/object_pool.hpp"
3131
#include "yasio/ref_ptr.hpp"
@@ -126,7 +126,7 @@ YASIO_LUA_API void clear()
126126

127127
extern "C" {
128128
struct lua_State;
129-
YASIO_LUA_API int luaopen_yasio_cclua(lua_State* L)
129+
YASIO_LUA_API int luaopen_yasio_axlua(lua_State* L)
130130
{
131131
int n = luaopen_yasio(L);
132132

@@ -145,7 +145,7 @@ YASIO_LUA_API int luaopen_yasio_cclua(lua_State* L)
145145

146146
extern "C" {
147147
struct lua_State;
148-
YASIO_LUA_API int luaopen_yasio_cclua(lua_State* L)
148+
YASIO_LUA_API int luaopen_yasio_axlua(lua_State* L)
149149
{
150150
luaopen_yasio(L);
151151

yasio/bindings/yasio_axlua.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SOFTWARE.
3232
#if defined(__cplusplus)
3333
extern "C" {
3434
#endif
35-
YASIO_LUA_API int luaopen_yasio_cclua(lua_State* L);
35+
YASIO_LUA_API int luaopen_yasio_axlua(lua_State* L);
3636
#if defined(__cplusplus)
3737
}
3838

0 commit comments

Comments
 (0)