-
Notifications
You must be signed in to change notification settings - Fork 27
/
.cirrus.yml
47 lines (47 loc) · 1.1 KB
/
.cirrus.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
37
38
39
40
41
42
43
44
45
46
47
build_jammy_task:
timeout_in: 120m
container:
dockerfile: install/jammy/Dockerfile
cpu: 8
memory: 24
test_script:
- export CC=clang-15
- export CXX=clang++-15
- bazel build
--define=WITH_SNOPT=OFF
--local_ram_resources=24000
--local_cpu_resources=8
--jobs=8
//...
- bazel test
--define=WITH_SNOPT=OFF
--local_ram_resources=24000
--local_cpu_resources=8
//...
drake_master_build_task:
timeout_in: 120m
container:
dockerfile: install/focal/ros/Dockerfile
cpu: 8
memory: 24
allow_failures: true
env:
DAIRLIB_WITH_ROS: ON
test_script:
- git clone https://github.com/RobotLocomotion/drake.git ../drake
- export DAIRLIB_LOCAL_DRAKE_PATH=$PWD/../drake
- cd tools/workspace/ros
- ./compile_ros_workspace.sh
- cd ../../../
- bazel build
--define=WITH_SNOPT=OFF
--local_ram_resources=24000
--local_cpu_resources=8
--jobs=8
//...
- bazel test
--define=WITH_SNOPT=OFF
--local_ram_resources=24000
--local_cpu_resources=8
--jobs=8
//...