Skip to content

Commit

Permalink
Update to libssl3
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz N. Gies <[email protected]>
  • Loading branch information
Licenser committed Jan 6, 2025
1 parent 3a11b31 commit b33d01c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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

0 comments on commit b33d01c

Please sign in to comment.