Commit 5981e5ad authored by Peter Parente's avatar Peter Parente

Fix unshared dev env

parent d76b4ca9
...@@ -8,23 +8,24 @@ services: ...@@ -8,23 +8,24 @@ services:
jobs: jobs:
include: include:
- stage: install - stage: test-pr
script: install:
- pip install --upgrade pip - pip install --upgrade pip
- make dev-env - make dev-env
- stage: test
script: script:
- set -e - set -e
- if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi; - if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi;
- if [ $(make n-other-diff) -ne 0 ]; then make build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi; - if [ $(make n-other-diff) -ne 0 ]; then make build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi;
- stage: pushback - stage: push-tx
install:
- pip install --upgrade pip
- make dev-env
script: script:
- if [ $(make n-docs-diff) -ne 0 ]; then make tx-en; fi; - if [ $(make n-docs-diff) -ne 0 ]; then make tx-en; fi;
stages: stages:
- install - test-pr
- test - name: push-tx
- name: pushback
if: branch = master if: branch = master
env: env:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment