Upgrade ring to 0.17 (#433) #891
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
Check_formatting: | |
name: 'Check formatting' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Rust stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt | |
override: true | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
Linux_default: | |
name: '[Linux, default] Build and test' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test --all | |
- name: Build examples and benches | |
run: cargo build --examples --benches | |
Linux_native_tls_notif: | |
name: '[Linux, native TLS + notifications] Build and test' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install native dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libdbus-1-dev pkg-config libssl-dev | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build | |
run: | | |
cargo build --no-default-features \ | |
--features "tls-native desktop-notifications" | |
- name: Test | |
run: | | |
cargo test --no-default-features \ | |
--features "tls-native desktop-notifications" | |
macOS_default: | |
name: '[macOS, default] Build and test' | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test | |
- name: Build examples and benches | |
run: cargo build --examples --benches | |
macOS_native_tls_notif: | |
name: '[macOS, native TLS + notifications] Build and test' | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build | |
run: | | |
cargo build --no-default-features \ | |
--features "tls-native desktop-notifications" | |
- name: Test | |
run: | | |
cargo test --no-default-features \ | |
--features "tls-native desktop-notifications" | |
# Updating dependencies can break the static build. | |
Linux_static_build_default: | |
name: Make statically linked executable (default) | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install native dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libdbus-1-dev pkg-config libssl-dev \ | |
musl musl-dev musl-tools | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: x86_64-unknown-linux-musl | |
override: true | |
- name: '[Linux] Make statically linked executable' | |
run: | | |
RUST_BACKTRACE=1 \ | |
cargo build --release --verbose --target=x86_64-unknown-linux-musl | |
Linux_static_build_desktop_notifications: | |
name: '[Linux] Make statically linked executable (desktop notifications)' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install native dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libdbus-1-dev pkg-config libssl-dev \ | |
musl musl-dev musl-tools | |
- name: Get stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: x86_64-unknown-linux-musl | |
override: true | |
- name: Make statically linked executable | |
run: | | |
RUST_BACKTRACE=1 \ | |
cargo build --release --verbose --target=x86_64-unknown-linux-musl \ | |
--features=desktop-notifications-static-linking |