File tree 1 file changed +40
-1
lines changed
1 file changed +40
-1
lines changed Original file line number Diff line number Diff line change 6
6
CI : " ON"
7
7
8
8
jobs :
9
- Build :
9
+ real32_64 :
10
10
runs-on : windows-latest
11
11
strategy :
12
12
fail-fast : false
36
36
with :
37
37
name : WindowsCMakeTestlog
38
38
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