Skip to content

Commit 6e17b36

Browse files
author
g
committed
Bump version to 0.30.5
- Remove unavailable aarch64-unknown-freebsd target from CI - Update Cargo.lock for dependencies
1 parent e5f0847 commit 6e17b36

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ jobs:
7272
- target: x86_64-unknown-freebsd
7373
arch: x64
7474
os: freebsd
75-
- target: aarch64-unknown-freebsd
76-
arch: arm64
77-
os: freebsd
7875
runs-on: ${{ matrix.os == 'freebsd' && 'ubuntu-latest' || matrix.os == 'windows' && 'windows-latest' || matrix.os == 'macos' && 'macos-latest' || 'ubuntu-latest' }}
7976

8077
steps:

.github/workflows/rust.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,18 @@ jobs:
7171
usesh: true
7272
prepare: |
7373
pkg update -f
74-
pkg install -y rust
74+
pkg install -y rust pkgconf
75+
# Install additional build dependencies that might be needed
76+
pkg install -y openssl cmake gmake
7577
run: |
7678
rustc --version
7779
cargo --version
7880
pwd
7981
ls -lah
82+
# Set environment variables for FreeBSD
83+
export OPENSSL_DIR=/usr/local
84+
export OPENSSL_LIB_DIR=/usr/local/lib
85+
export OPENSSL_INCLUDE_DIR=/usr/local/include
8086
cargo fmt --all -- --check
8187
cargo clippy --all-targets --all-features -- -D warnings
8288
cargo build --verbose

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "obs-cmd"
3-
version = "0.30.4"
3+
version = "0.30.5"
44
edition = "2021"
55
description = "A minimal command to control obs via obs-websocket"
66
authors = ["Luigi Maselli <[email protected]>"]

0 commit comments

Comments
 (0)