File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed
Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ # This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage.
2+ # See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
3+ name : CMake Linux x86
4+
5+ on :
6+ push :
7+ branches : [ "main" ]
8+ pull_request :
9+ branches : [ "main" ]
10+ workflow_dispatch :
11+
12+ env :
13+ # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
14+ BUILD_TYPE : MinSizeRel
15+
16+ jobs :
17+ build :
18+ # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
19+ # You can convert this to a matrix build if you need cross-platform coverage.
20+ # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
21+ runs-on : ubuntu-latest
22+
23+ steps :
24+ - uses : actions/checkout@v4
25+
26+ - name : Setup LLVM
27+ uses : ZhongRuoyu/setup-llvm@5bee61a33dd6160cb4dd652cd80d56ff3654535f
28+
29+ - name : Set up GCC
30+ uses : egor-tensin/setup-gcc@v1
31+ with :
32+ version : latest
33+ platform : x64
34+
35+ - name : Configure CMake
36+ # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
37+ # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
38+ run : |
39+ mkdir ${{github.workspace}}/build
40+ cd ${{github.workspace}}/build
41+ cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DLLVM_TARGETS_TO_BUILD="X86" -G Ninja ../src
42+
43+ - name : Build
44+ # Build your program with the given configuration
45+ run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
46+
47+ - name : Test
48+ working-directory : ${{github.workspace}}/build
49+ # Execute tests defined by the CMake configuration.
50+ # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
51+ run : ./${{github.workspace}}/build/asa
52+
You can’t perform that action at this time.
0 commit comments