File tree Expand file tree Collapse file tree 1 file changed +40
-1
lines changed Expand file tree Collapse file tree 1 file changed +40
-1
lines changed Original file line number Diff line number Diff line change 66 CI : " ON"
77
88jobs :
9- Build :
9+ real32_64 :
1010 runs-on : windows-latest
1111 strategy :
1212 fail-fast : false
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
You can’t perform that action at this time.
0 commit comments