Skip to content

Commit 4331120

Browse files
author
Daniel Kroening
committed
first attempt to use AWS Codebuild
1 parent 37a11f9 commit 4331120

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

buildspec.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 0.2
2+
3+
phases:
4+
install:
5+
commands:
6+
- apt-get update -y
7+
- apt-get install -y g++ gcc flex bison make git libwww-perl patch
8+
build:
9+
commands:
10+
- echo Build started on `date`
11+
- (cd src ; make minisat2-download)
12+
- (cd src ; make)
13+
post_build:
14+
commands:
15+
- echo Build completed on `date`
16+
artifacts:
17+
files:

0 commit comments

Comments
 (0)