Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci/freebsd): fix invalid peer certificate: UnknownIssuer #3810

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ jobs:
usesh: true
copyback: false
prepare: |
pkg install -y git gmake bash sudo
pkg install -y git gmake bash sudo ca_root_nss
run: |
echo "========="
echo "create non-root user and log into it"
Expand Down Expand Up @@ -1188,7 +1188,7 @@ jobs:
usesh: true
copyback: false
prepare: |
pkg install -y git gmake bash sudo
pkg install -y git gmake bash sudo ca_root_nss
run: |
echo "========="
echo "create non-root user and log into it"
Expand Down
2 changes: 1 addition & 1 deletion ci/actions-templates/freebsd-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs: # skip-master skip-stable
usesh: true
copyback: false
prepare: |
pkg install -y git gmake bash sudo
pkg install -y git gmake bash sudo ca_root_nss
run: |
echo "========="
echo "create non-root user and log into it"
Expand Down
Loading