Skip to content

Commit e9e73f4

Browse files
committed
Beginnings of gitlab CI setup
1 parent 7218336 commit e9e73f4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.gitlab-ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
stages:
2+
- system_setup
3+
- unit_test
4+
- field_test
5+
# - deploy
6+
7+
environment:
8+
stage: system_setup
9+
script: echo "Setting up system"
10+
11+
unit_test:
12+
stage: unit_test
13+
script: echo "Running tests"
14+
15+
field_test:
16+
stage: field_test
17+
script: echo "Building the app"

0 commit comments

Comments
 (0)