Skip to content

Commit 7918035

Browse files
committed
ci: add real128 test
1 parent 6a66b8e commit 7918035

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

.github/workflows/ci_windows.yml

+40-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
CI: "ON"
77

88
jobs:
9-
Build:
9+
real32_64:
1010
runs-on: windows-latest
1111
strategy:
1212
fail-fast: false
@@ -36,3 +36,42 @@ jobs:
3636
with:
3737
name: WindowsCMakeTestlog
3838
path: build/Testing/Temporary/LastTest.log
39+
40+
real128:
41+
runs-on: ubuntu-latest
42+
strategy:
43+
fail-fast: false
44+
45+
steps:
46+
- uses: actions/checkout@v1
47+
48+
- name: Set up Python 3.x
49+
uses: actions/setup-python@v1
50+
with:
51+
python-version: 3.x
52+
53+
- name: Set up CMake
54+
run: pip install --upgrade cmake
55+
56+
- name: Cmake configure
57+
- run: cmake -DREAL128=true -B build
58+
env:
59+
FC: gfortran
60+
CC: gcc
61+
CXX: g++
62+
63+
- name: CMake build
64+
run: cmake --build build --parallel
65+
66+
- run: cmake --build build --verbose --parallel 1
67+
if: failure()
68+
69+
- name: CTest
70+
run: ctest --output-on-failure --parallel -V
71+
working-directory: build
72+
73+
- uses: actions/upload-artifact@v1
74+
if: failure()
75+
with:
76+
name: Real128CMakeTestlog
77+
path: build/Testing/Temporary/LastTest.log

0 commit comments

Comments
 (0)