We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c20178a commit 9ef938bCopy full SHA for 9ef938b
.github/workflows/ci.yaml
@@ -24,3 +24,23 @@ jobs:
24
config_file: .ci/yamllint.yml
25
strict: true
26
file_or_dir: .github/
27
+ build:
28
+ name: build
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - name: Check out code
32
+ uses: actions/checkout@v2
33
+ - name: Install Ninja
34
+ run: sudo apt-get update && sudo apt-get install -y ninja-build
35
+ - name: Configure
36
+ run: |
37
+ pwd
38
+ ls
39
+ mkdir -p build
40
+ cd build
41
+ cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=On -DLLVM_ENABLE_PROJECTS="clang;lld" ../llvm-project/llvm
42
+ - name: Build
43
44
45
46
+ ninja
0 commit comments