Skip to content
Snippets Groups Projects
Commit 9b0f7499 authored by AdminXVII's avatar AdminXVII Committed by Michael Aaron Murphy
Browse files

Don't fail if the FULL var is not set

parent cbd98a87
Branches
Tags
No related merge requests found
...@@ -20,7 +20,7 @@ linux: ...@@ -20,7 +20,7 @@ linux:
image: 'rust:1.32.0' image: 'rust:1.32.0'
script: script:
- cargo build - cargo build
- make tests - FULL=1 make tests
linux:stable: linux:stable:
script: script:
......
...@@ -59,6 +59,8 @@ cargo +$TOOLCHAIN build ...@@ -59,6 +59,8 @@ cargo +$TOOLCHAIN build
test_generic test_generic
test_params test_params
set +u
if [ -n "$FULL" ]; then if [ -n "$FULL" ]; then
# Build debug binary for testing structopt argument parsing # Build debug binary for testing structopt argument parsing
cargo +$TOOLCHAIN build --features=advanced_arg_parsing cargo +$TOOLCHAIN build --features=advanced_arg_parsing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment