Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
ink
Commits
d7504ea5
Unverified
Commit
d7504ea5
authored
Nov 10, 2020
by
Michael Müller
Committed by
GitHub
Nov 10, 2020
Browse files
Replace `let` with `$(( ))` (#572)
parent
1d086a3a
Pipeline
#113634
passed with stages
in 29 minutes and 9 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
d7504ea5
...
...
@@ -322,7 +322,7 @@ fuzz-tests:
if grep "ink-fuzz-tests =" crates/${crate}/Cargo.toml;
then
cargo test --verbose --features ink-fuzz-tests --manifest-path crates/${crate}/Cargo.toml --no-fail-fast -- fuzz_;
let "
all_tests_passed |
=
$?
"
;
all_tests_passed=$((
all_tests_passed | $?
))
;
fi
done
-
if [ $all_tests_passed -eq 0 ]; then exit 0; fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment