Skip to content

Commit 11be68b

Browse files
author
DvirDukhan
committed
print cargo.toml in ci
1 parent 09cb6a5 commit 11be68b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ commands:
120120
command: make lint
121121
- run:
122122
name: patch macos tests # Avoid AVX with Regex with CircleCI since virtualization layer doesn't support it. Use sed to replace the relevant entry in cargo.toml
123-
command: if [[ $(uname -s) == Darwin ]]; then sed -i 's/regex = "1"/regex = { version = "1", default-features = ["perf", "unicode"] }/g' Cargo.toml; fi
123+
command: |
124+
if [[ $(uname -s) == Darwin ]]; then sed -i 's/regex = "1"/regex = { version = "1", default-features = ["perf", "unicode"] }/g' Cargo.toml; fi
125+
cat cargo.toml
124126
- run:
125127
name: Build debug
126128
shell: /bin/bash -l -eo pipefail

0 commit comments

Comments
 (0)