Skip to content

Commit

Permalink
try wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyle committed Feb 21, 2024
1 parent 6c08706 commit 7e66e6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
static_code_analysis:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
args: --workspace --no-deps # Warnings are treated as errors due to our .cargo/config file.

build_and_test:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion tools/run_doctests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RETURN_CODE=$?
echo $OUTPUT
echo

if [[ "$OUTPUT" =~ (error: no library targets found in packages) ]]; then
if [[ $OUTPUT == *"error: no library targets found in packages"* ]]; then
echo "Detected 'no library targets' error, which is being suppressed"
exit 0
else
Expand Down

0 comments on commit 7e66e6a

Please sign in to comment.