Skip to content
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
11 changes: 0 additions & 11 deletions .github/workflows/build-blez-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,6 @@ jobs:
strategy:
matrix:
version:
- "5.55"
- "5.56"
- "5.57"
- "5.58"
- "5.59"
- "5.60"
- "5.61"
- "5.62"
- "5.63"
- "5.64"
- "5.65"
- "5.66"
- "5.85"
steps:
Expand Down
34 changes: 16 additions & 18 deletions .github/workflows/build-bluez.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: build-bluez

on: workflow_dispatch
on:
workflow_dispatch:
push:
tags:
- "*"

jobs:
build-all:
Expand All @@ -12,17 +16,6 @@ jobs:
- linux/arm64
- linux/arm/v7
version:
- "3.10_5.55"
- "3.10_5.56"
- "3.10_5.57"
- "3.10_5.58"
- "3.10_5.59"
- "3.10_5.60"
- "3.10_5.61"
- "3.10_5.62"
- "3.10_5.63"
- "3.10_5.64"
- "3.10_5.65"
- "3.10_5.66"
- "3.10_5.85"
steps:
Expand All @@ -34,21 +27,26 @@ jobs:
uses: docker/setup-buildx-action@v2
- name: Build
run: |
./scripts/cp-build.sh ${{ matrix.platform }} ${{ matrix.version }}
BLUEZ_VERSION=$(echo "${{ matrix.version }}" | cut -d'_' -f2)
./scripts/cp-build.sh ${{ matrix.platform }} $BLUEZ_VERSION
- name: Set artifact name
id: artifact
run: echo "name=dist-$(echo '${{ matrix.platform }}' | tr '/' '-')-${{ matrix.version }}" >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
name: ${{ steps.artifact.outputs.name }}
path: dist/*.tar.gz
release:
runs-on: ubuntu-latest
needs: build-all
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Download math result for job 1
uses: actions/download-artifact@v3
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
name: dist
pattern: dist-*
merge-multiple: true
- name: Release binaries
uses: softprops/action-gh-release@v1
with:
Expand Down
6 changes: 1 addition & 5 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,15 @@ function build {
VERSION="$1"
./bootstrap
./configure \
--disable-a2dp \
--disable-avrcp \
--disable-bap \
--disable-audio \
--disable-cups \
--disable-hid \
--disable-hog \
--disable-manpages \
--disable-mcp \
--disable-network \
--disable-obex \
--disable-systemd \
--disable-network \
--disable-vcp \
--enable-deprecated \
--enable-experimental \
--enable-testing \
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

BLEZ_VERSION="2026-01-22"
BLEZ_VERSION="2026-01-23"
DEFAULT_BLUEZ_VERSION="${BLUEZ_VERSION:-5.66}"

PARENT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
Expand Down
Loading