Skip to content

Commit

Permalink
Adding initial .gitlab-ci.yml (#324)
Browse files Browse the repository at this point in the history
* Adding initial .gitlab-ci.yml

* Clean up comments in .gitlab-ci.yml
  • Loading branch information
jtpaasch committed Jun 14, 2021
1 parent 1b1ddaa commit 0ac2c14
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# The docker image to use to run the CI jobs.
# NOTE: Jobs must be tagged as `docker` to get picked up
# by the CI docker runners.
image: "binaryanalysisplatform/bap:latest"

# JOB: run the tests for WP.
run_wp_tests:

tags:
- docker

script:
- make test -C wp

# JOB: build BilDB.
build_bildb:

tags:
- docker

script:
- make -C bildb

0 comments on commit 0ac2c14

Please sign in to comment.