12
12
workflow_dispatch :
13
13
14
14
jobs :
15
- ubuntu-18_04 :
16
- runs-on : ubuntu-18.04
17
- steps :
18
- - uses : actions/checkout@v2
19
- with :
20
- submodules : recursive
21
- - run : python download-deps.py --r no
22
- - run : echo -e "y" | bash install-deps-linux.sh
23
- - run : cmake -B b -S .
24
- - run : cmake --build b
15
+ # ubuntu-18_04:
16
+ # runs-on: ubuntu-18.04
17
+ # steps:
18
+ # - uses: actions/checkout@v2
19
+ # with:
20
+ # submodules: recursive
21
+ # - run: python download-deps.py --r no
22
+ # - run: echo -e "y" | bash install-deps-linux.sh
23
+ # - run: cmake -B b -S .
24
+ # - run: cmake --build b
25
25
26
- ubuntu-20_04 :
27
- runs-on : ubuntu-20.04
28
- steps :
29
- - uses : actions/checkout@v2
30
- with :
31
- submodules : recursive
32
- - run : python download-deps.py --r no
33
- - run : echo -e "y" | bash install-deps-linux.sh
34
- - run : cmake -B b -S .
35
- - run : cmake --build b
26
+ # ubuntu-20_04:
27
+ # runs-on: ubuntu-20.04
28
+ # steps:
29
+ # - uses: actions/checkout@v2
30
+ # with:
31
+ # submodules: recursive
32
+ # - run: python download-deps.py --r no
33
+ # - run: echo -e "y" | bash install-deps-linux.sh
34
+ # - run: cmake -B b -S .
35
+ # - run: cmake --build b
36
36
37
37
windows-2019 :
38
38
runs-on : windows-2019
@@ -54,64 +54,64 @@ jobs:
54
54
- run : cmake -B b -S . -G "Visual Studio 17 2022" -A Win32
55
55
- run : cmake --build b
56
56
57
- macos-10_15 :
58
- runs-on : macos-10.15
59
- steps :
60
- - uses : actions/checkout@v2
61
- with :
62
- submodules : recursive
63
- - run : python download-deps.py --r no
64
- - run : cmake -B b -S . -GXcode
65
- - run : cmake --build b
57
+ # macos-10_15:
58
+ # runs-on: macos-10.15
59
+ # steps:
60
+ # - uses: actions/checkout@v2
61
+ # with:
62
+ # submodules: recursive
63
+ # - run: python download-deps.py --r no
64
+ # - run: cmake -B b -S . -GXcode
65
+ # - run: cmake --build b
66
66
67
- macos-11 :
68
- runs-on : macos-11
69
- steps :
70
- - uses : actions/checkout@v2
71
- with :
72
- submodules : recursive
73
- - run : python download-deps.py --r no
74
- - run : cmake -B b -S . -GXcode
75
- - run : cmake --build b
67
+ # macos-11:
68
+ # runs-on: macos-11
69
+ # steps:
70
+ # - uses: actions/checkout@v2
71
+ # with:
72
+ # submodules: recursive
73
+ # - run: python download-deps.py --r no
74
+ # - run: cmake -B b -S . -GXcode
75
+ # - run: cmake --build b
76
76
77
- macos-10_15_ios :
78
- runs-on : macos-10.15
79
- steps :
80
- - uses : actions/checkout@v2
81
- with :
82
- submodules : recursive
83
- - run : python download-deps.py --r no
84
- - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
85
- - run : cmake --build b --config Release --target cpp-tests -- -quiet
77
+ # macos-10_15_ios:
78
+ # runs-on: macos-10.15
79
+ # steps:
80
+ # - uses: actions/checkout@v2
81
+ # with:
82
+ # submodules: recursive
83
+ # - run: python download-deps.py --r no
84
+ # - run: cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
85
+ # - run: cmake --build b --config Release --target cpp-tests -- -quiet
86
86
87
- macos-11_ios :
88
- runs-on : macos-11
89
- steps :
90
- - uses : actions/checkout@v2
91
- with :
92
- submodules : recursive
93
- - run : python download-deps.py --r no
94
- - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
95
- - run : cmake --build b --config Release --target cpp-tests -- -quiet -destination "platform=iOS Simulator,name=iPhone Retina (4-inch)"
87
+ # macos-11_ios:
88
+ # runs-on: macos-11
89
+ # steps:
90
+ # - uses: actions/checkout@v2
91
+ # with:
92
+ # submodules: recursive
93
+ # - run: python download-deps.py --r no
94
+ # - run: cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
95
+ # - run: cmake --build b --config Release --target cpp-tests -- -quiet -destination "platform=iOS Simulator,name=iPhone Retina (4-inch)"
96
96
97
- windows-2019-android :
98
- runs-on : windows-2019
99
- steps :
100
- - uses : actions/checkout@v2
101
- with :
102
- submodules : recursive
103
- - run : python download-deps.py --r no
104
- - run : ./gradlew assembleRelease -PPROP_BUILD_TYPE=cmake --info
105
- shell : bash
106
- working-directory : tests/cpp-tests/proj.android
97
+ # windows-2019-android:
98
+ # runs-on: windows-2019
99
+ # steps:
100
+ # - uses: actions/checkout@v2
101
+ # with:
102
+ # submodules: recursive
103
+ # - run: python download-deps.py --r no
104
+ # - run: ./gradlew assembleRelease -PPROP_BUILD_TYPE=cmake --info
105
+ # shell: bash
106
+ # working-directory: tests/cpp-tests/proj.android
107
107
108
- ubuntu-20_04-android :
109
- runs-on : ubuntu-20.04
110
- steps :
111
- - uses : actions/checkout@v2
112
- with :
113
- submodules : recursive
114
- - run : python download-deps.py --r no
115
- - run : ./gradlew assembleRelease -PPROP_BUILD_TYPE=cmake --info
116
- shell : bash
117
- working-directory : tests/cpp-tests/proj.android
108
+ # ubuntu-20_04-android:
109
+ # runs-on: ubuntu-20.04
110
+ # steps:
111
+ # - uses: actions/checkout@v2
112
+ # with:
113
+ # submodules: recursive
114
+ # - run: python download-deps.py --r no
115
+ # - run: ./gradlew assembleRelease -PPROP_BUILD_TYPE=cmake --info
116
+ # shell: bash
117
+ # working-directory: tests/cpp-tests/proj.android
0 commit comments