1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-03 17:59:19 +02:00

try unify environment-var settings

This commit is contained in:
holger krekel 2019-04-02 17:00:12 +02:00
parent ef350e2102
commit 4a1a0638da
No known key found for this signature in database
GPG key ID: 8E3B03A279B772D6

View file

@ -32,9 +32,6 @@ jobs:
upload_docs_wheels: upload_docs_wheels:
machine: True machine: True
steps: steps:
- run:
command: |
echo 'export MESONARGS=""' >> $BASH_ENV
- checkout - checkout
- attach_workspace: - attach_workspace:
at: workspace at: workspace
@ -47,10 +44,10 @@ jobs:
- checkout - checkout
- run: docker pull deltachat/coredeps - run: docker pull deltachat/coredeps
- run: - run:
command: | environment:
echo 'export MESONARGS="-Dmonolith=true"' >> $BASH_ENV MESONARGS: -Dmonolith=true
echo 'export TESTS=1' >> $BASH_ENV TESTS: 1
- run: ci_scripts/ci_run.sh command: ci_scripts/ci_run.sh
build_static: build_static:
machine: True machine: True
@ -58,9 +55,9 @@ jobs:
- checkout - checkout
- run: docker pull deltachat/coredeps - run: docker pull deltachat/coredeps
- run: - run:
command: | environment:
echo 'export MESONARGS="--default-library=static"' >> $BASH_ENV MESONARGS: --default-library=static
- run: ci_scripts/ci_run.sh command: ci_scripts/ci_run.sh
build_forcefallback: build_forcefallback:
machine: True machine: True
@ -68,9 +65,9 @@ jobs:
- checkout - checkout
- run: docker pull deltachat/coredeps - run: docker pull deltachat/coredeps
- run: - run:
command: | environment:
echo 'export MESONARGS="--wrap-mode=forcefallback --default-library=static"' >> $BASH_ENV MESONARGS: --wrap-mode=forcefallback --default-library=static
- run: ci_scripts/ci_run.sh command: ci_scripts/ci_run.sh
workflows: workflows:
version: 2 version: 2