File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 21
21
runs-on : windows-2022
22
22
steps :
23
23
- name : Checkout bx
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
with :
26
26
repository : bkaradzic/bx
27
27
path : bx
@@ -47,10 +47,10 @@ jobs:
47
47
{ msystem: CLANG64, project: 'mingw-clang', bindir: 'win64_mingw-clang' },
48
48
]
49
49
name : mingw-${{ matrix.msystem }}
50
- runs-on : windows-latest
50
+ runs-on : windows-2022
51
51
steps :
52
52
- name : Checkout bx
53
- uses : actions/checkout@v3
53
+ uses : actions/checkout@v4
54
54
with :
55
55
repository : bkaradzic/bx
56
56
path : bx
@@ -81,10 +81,10 @@ jobs:
81
81
{ config: release, binsuffix: Release },
82
82
]
83
83
name : linux-gcc-${{ matrix.config }}64
84
- runs-on : ubuntu-22 .04
84
+ runs-on : ubuntu-24 .04
85
85
steps :
86
86
- name : Checkout bx
87
- uses : actions/checkout@v3
87
+ uses : actions/checkout@v4
88
88
with :
89
89
repository : bkaradzic/bx
90
90
path : bx
@@ -106,10 +106,10 @@ jobs:
106
106
{ config: release, binsuffix: Release },
107
107
]
108
108
name : osx-x64-${{ matrix.config }}
109
- runs-on : macos-latest
109
+ runs-on : macos-14
110
110
steps :
111
111
- name : Checkout bx
112
- uses : actions/checkout@v3
112
+ uses : actions/checkout@v4
113
113
with :
114
114
repository : bkaradzic/bx
115
115
path : bx
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ int runAllTests(int _argc, const char* _argv[])
36
36
" , Arch: " BX_ARCH_NAME
37
37
" , OS: " BX_PLATFORM_NAME
38
38
" , CRT: " BX_CRT_NAME
39
- " , C++: " BX_CPP_NAME
40
- " , SIMD"
39
+ " , Features: " BX_CPP_NAME
41
40
#if BX_SIMD_SUPPORTED
41
+ " , SIMD"
42
42
# if BX_SIMD_AVX
43
43
" , AVX"
44
44
# endif // BX_SIMD_AVX
@@ -51,8 +51,6 @@ int runAllTests(int _argc, const char* _argv[])
51
51
# if BX_SIMD_SSE
52
52
" , SSE"
53
53
# endif // BX_SIMD_SSE
54
- #else
55
- " : Not supported."
56
54
#endif // BX_SIMD_SUPPORTED
57
55
58
56
" , Date: " __DATE__
You can’t perform that action at this time.
0 commit comments