Skip to content
This repository has been archived by the owner on Nov 25, 2022. It is now read-only.

Commit

Permalink
try unify environment-var settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hpk42 committed Apr 2, 2019
1 parent ef350e2 commit 4a1a063
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions ci_scripts/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:
upload_docs_wheels:
machine: True
steps:
- run:
command: |
echo 'export MESONARGS=""' >> $BASH_ENV
- checkout
- attach_workspace:
at: workspace
Expand All @@ -46,31 +43,31 @@ jobs:
steps:
- checkout
- run: docker pull deltachat/coredeps
- run:
command: |
echo 'export MESONARGS="-Dmonolith=true"' >> $BASH_ENV
echo 'export TESTS=1' >> $BASH_ENV
- run: ci_scripts/ci_run.sh
- run:
environment:
MESONARGS: -Dmonolith=true
TESTS: 1
command: ci_scripts/ci_run.sh

build_static:
machine: True
steps:
- checkout
- run: docker pull deltachat/coredeps
- run:
command: |
echo 'export MESONARGS="--default-library=static"' >> $BASH_ENV
- run: ci_scripts/ci_run.sh
- run:
environment:
MESONARGS: --default-library=static
command: ci_scripts/ci_run.sh

build_forcefallback:
machine: True
steps:
- checkout
- run: docker pull deltachat/coredeps
- run:
command: |
echo 'export MESONARGS="--wrap-mode=forcefallback --default-library=static"' >> $BASH_ENV
- run: ci_scripts/ci_run.sh
environment:
MESONARGS: --wrap-mode=forcefallback --default-library=static
command: ci_scripts/ci_run.sh

workflows:
version: 2
Expand Down

0 comments on commit 4a1a063

Please sign in to comment.