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

Update to libssl3 #2704

Merged
merged 1 commit into from
Jan 6, 2025
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
2 changes: 1 addition & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ steps:
environment:
RUSTFLAGS: "-C target-cpu=native"
commands:
- apt-get -qy update && apt-get install -y libssl-dev libssl1.1 cmake libclang-dev
- apt-get -qy update && apt-get install -y libssl-dev libssl3 cmake libclang-dev
- rustup default nightly
- rustup update
- cargo +nightly test --verbose --all
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3
- name: Check workflow permissions
id: check_permissions
uses: scherermichael-oss/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3; sudo apt-get clean
- uses: Swatinem/rust-cache@v2
- name: make docs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/eqc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
otp-version: "24"
rebar3-version: "3"
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3
- name: install yq
run: wget https://github.com/mikefarah/yq/releases/download/v4.20.2/yq_linux_amd64 -O ~/yq && chmod +x ~/yq
- name: install EQC
Expand All @@ -48,7 +48,7 @@ jobs:
otp-version: "24"
rebar3-version: "3"
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3
- name: install EQC
run: curl -O http://quviq-licencer.com/downloads/eqcR24.zip && unzip eqcR24.zip && cd Quviq* && erl -noshell -eval 'eqc_install:install()' -eval 'init:stop()'
- name: Activate EQC
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install deps
if: matrix.os == 'ubuntu-latest-8-cores'
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3; sudo apt-get clean
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- uses: Swatinem/rust-cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3; sudo apt-get clean
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl3; sudo apt-get clean
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- uses: Swatinem/rust-cache@v2
Expand Down
Loading