Skip to content

Commit

Permalink
Add starter CI setup (#165)
Browse files Browse the repository at this point in the history
* add starter CI setup

* remove unneded name

* refactor up common parts

* space
  • Loading branch information
aiuto authored Apr 29, 2020
1 parent 642022a commit eea3f69
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .bazelci/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
common: &common
name: distribution
working_directory: pkg
build_targets:
- "distro:*"

tasks:
ubuntu1604:
platform: ubuntu1604
<<: *common
ubuntu1804:
platform: ubuntu1804
<<: *common
3 changes: 3 additions & 0 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
imports:
- tests.yml
- integration.yml
12 changes: 12 additions & 0 deletions .bazelci/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
common: &common
working_directory: pkg
test_targets:
- "..."

tasks:
ubuntu1604:
platform: ubuntu1604
<<: *common
ubuntu1804:
platform: ubuntu1804
<<: *common

0 comments on commit eea3f69

Please sign in to comment.