docker,travis: fail build on any warning

This commit is contained in:
Leon Klingele 2019-09-24 00:19:18 +02:00
parent 6942916f13
commit b25013c4a2
No known key found for this signature in database
GPG Key ID: 0C8AF48831EEC211
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
- shards update - shards update
- shards install - shards install
install: install:
- crystal build --error-on-warnings src/invidious.cr - crystal build --warnings all --error-on-warnings src/invidious.cr
script: script:
- crystal tool format --check - crystal tool format --check
- crystal spec - crystal spec

View File

@ -9,7 +9,7 @@ COPY ./src/ ./src/
# TODO: .git folder is required for building this is destructive. # TODO: .git folder is required for building this is destructive.
# See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION. # See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION.
COPY ./.git/ ./.git/ COPY ./.git/ ./.git/
RUN crystal build --static --release \ RUN crystal build --static --release --warnings all --error-on-warnings \
# TODO: Remove next line, see https://github.com/crystal-lang/crystal/issues/7946 # TODO: Remove next line, see https://github.com/crystal-lang/crystal/issues/7946
-Dmusl \ -Dmusl \
./src/invidious.cr ./src/invidious.cr