Skip to content

Commit 71a344e

Browse files
[ci] Update macosx worker list
Supported github workers are now 14, 15 and 15-intel. 13 is deprecated.
1 parent 4393266 commit 71a344e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ jobs:
88
strategy:
99
matrix:
1010
os:
11-
- 13
1211
- 14
12+
- 15
13+
- 15-intel
1314
runs-on: macos-${{ matrix.os }}
1415
name: 'macos-${{ matrix.os }}'
1516
steps:

test/test_xsimd_api.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,11 @@ struct xsimd_api_float_types_functions
484484
void test_asin()
485485
{
486486
value_type val(1);
487+
#if defined(__APPLE__)
488+
CHECK_EQ(extract(xsimd::asin(T(val))), doctest::Approx(std::asin(val)));
489+
#else
487490
CHECK_EQ(extract(xsimd::asin(T(val))), std::asin(val));
491+
#endif
488492
}
489493
void test_asinh()
490494
{

0 commit comments

Comments
 (0)