File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 26
26
format_check_enabled : false
27
27
unacceptable_language_check_enabled : false
28
28
api_breakage_check_enabled : false
29
+
30
+ cmake_build :
31
+ name : CMake Build
32
+ runs-on : ubuntu-latest
33
+ container : swift:6.1-noble
34
+ steps :
35
+ - name : checkout sources
36
+ uses : actions/checkout@v1
37
+ - name : Install dependencies
38
+ shell : bash
39
+ run : apt update && apt install -y cmake ninja-build
40
+ - name : Configure Project
41
+ shell : bash
42
+ run : cmake -G 'Ninja' -B build -S . -DCMAKE_C_COMPILER=clang -DCMAKE_Swift_COMPILER=swiftc -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=YES
43
+ - name : Build Project
44
+ shell : bash
45
+ run : cmake --build build
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.29 )
1
+ cmake_minimum_required (VERSION 3.26...3. 29 )
2
2
project (Subprocess LANGUAGES C Swift )
3
3
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake/modules" )
4
4
You can’t perform that action at this time.
0 commit comments