-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (33 loc) · 937 Bytes
/
cmake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CMake
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install -y cmake make llvm-dev lld clang libclang-dev
- name: Checkout Enzyme
uses: actions/checkout@v4
with:
repository: 'EnzymeAD/Enzyme'
path: 'enzyme'
- name: cmake
working-directory: enzyme
run: mkdir build && cd build && cmake ../enzyme -DCMAKE_BUILD_TYPE=Release
- name: make
working-directory: enzyme/build
run: sudo make -j `nproc` install
- name: Checkout
uses: actions/checkout@v4
with:
path: 'main'
- name: Configure
working-directory: ./main
run: mkdir build && cd build && cmake ..
- name: Build
working-directory: ./main/build
run: make