Skip to content

Commit

Permalink
Fix CI again
Browse files Browse the repository at this point in the history
  • Loading branch information
dqbd committed Mar 5, 2023
1 parent 12805e3 commit ae30c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ build-verbosity = 1

linux.before-all = [
"ulimit -n 1024",
"(command -v yum || yum install openssl-devel -y)",
"(command -v apk || apk add openssl-dev -y)",
"((command -v yum && yum install openssl-devel -y) || echo 'no yum found')",
"((command -v apk && apk add openssl-dev -y) || echo 'no apk found')",
"(curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y)"
]
linux.environment = { PATH = "$PATH:$HOME/.cargo/bin" }
Expand Down

0 comments on commit ae30c13

Please sign in to comment.