Skip to content

Commit

Permalink
workflow update - mac-os-latest only (0.1.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolja committed Nov 26, 2024
1 parent 5d25a0f commit 2cd5acf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 18 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,21 @@ jobs:
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-latest
# - target: x86_64-unknown-linux-musl
# os: ubuntu-latest
# - target: x86_64-apple-darwin
# os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: universal-apple-darwin
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y pkg-config libssl-dev
- if: matrix.os == 'macos-latest'
run: brew install [email protected]
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/upload-rust-binary-action@v1
with:
Expand Down
4 changes: 1 addition & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orca"
version = "0.1.4"
version = "0.1.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -26,6 +26,3 @@ clap = {version = "*", features = ["derive"]}
crypto-hash = "0.3.4"
rand = "0.8.5"
regex = "1.11.1"
# needed for Linux builds:
openssl-sys = "0.9"
openssl = "0.10"
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::appstate::AppState;
#[derive(Parser, Debug)]
#[clap(
author = "Kolja Wilcke",
version = "0.1.4",
version = "0.1.5",
about = "A simple OPDS server for Calibre libraries"
)]
struct Cli {
Expand Down

0 comments on commit 2cd5acf

Please sign in to comment.