From 04164ecf1fb601202e1f0309b4e3404d5c43b087 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 2 Dec 2025 08:51:56 +0100 Subject: [PATCH 1/3] update binary readme --- docs/binaries/00_README.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/binaries/00_README.txt b/docs/binaries/00_README.txt index aff3716f9..08c428c6d 100644 --- a/docs/binaries/00_README.txt +++ b/docs/binaries/00_README.txt @@ -37,17 +37,13 @@ borg-linux-glibc235-arm64-gh Linux ARM (built on Ubuntu 22.04 LTS with glibc 2. borg-macos-14-arm64-gh macOS Apple Silicon (built on macOS 14 w/o FUSE support) borg-macos-13-x86_64-gh macOS Intel (built on macOS 13 w/o FUSE support) +borg-freebsd-14-x86_64-gh FreeBSD AMD/Intel (built on FreeBSD 14) Binaries built locally ~~~~~~~~~~~~~~~~~~~~~~ -borg-linux-glibc241-x86_64 Linux (built on Debian 13 "Trixie" with glibc 2.41) -borg-linux-glibc236-x86_64 Linux (built on Debian 12 "Bookworm" with glibc 2.36) borg-linux-glibc231-x86_64 Linux (built on Debian 11 "Bullseye" with glibc 2.31) -borg-freebsd-13-x86_64 FreeBSD (built on FreeBSD 13) -borg-freebsd-14-x86_64 FreeBSD (built on FreeBSD 14) - Note: if you don't find a specific binary here, check release 1.4.1 or 1.2.9. From 9f61c1c6933ac7c0041a898424f36ae2622225b2 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 2 Dec 2025 08:59:33 +0100 Subject: [PATCH 2/3] freebsd: fix upload name for artifact zip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74fcb0cd0..fd9a2f9ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -450,7 +450,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') && matrix.do_binaries uses: actions/upload-artifact@v4 with: - name: ${{ matrix.os }}-${{ matrix.version }}-dist + name: ${{ matrix.artifact_prefix }} path: artifacts/* if-no-files-found: ignore From 1298840de09c90c2af66772e029cf9b42b825fd0 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 2 Dec 2025 11:04:56 +0100 Subject: [PATCH 3/3] CI: increase timeout --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd9a2f9ca..16ed063a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,8 @@ jobs: TOXENV: ${{ matrix.toxenv }} runs-on: ${{ matrix.os }} - timeout-minutes: 180 + # macOS machines can be slow, if overloaded. + timeout-minutes: 360 steps: - uses: actions/checkout@v4