diff options
author | elijah <elijah@riseup.net> | 2016-08-30 15:31:23 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-09-01 10:13:31 -0700 |
commit | c4afb0b63fdfaef6a7d67917f5b93e353902d36d (patch) | |
tree | 90f8cb671a175dadb81a63d8de1f0fa262119035 /.gitlab-ci.yml | |
parent | 441a488ac13a6a3cf50d2185f4611f13b54483e7 (diff) |
fix paths for gitlab ci
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2a763c0..fcfd1be9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ before_script: - echo 'Running global before_script' - - bundle install --path vendor/bundle --jobs $(nproc) "${FLAGS[@]}" + - cd tests/platform-ci + - ./setup.sh stages: - syntax @@ -42,4 +43,4 @@ catalog: build: stage: build script: - - ./bin/ci-build.sh + - ./ci-build.sh |