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
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
sudo mkdir -p /build
sudo chown $USER:$USER /build
curl -L https://github.com/nzbgetcom/build-files/releases/download/v3.0/android-unpack.tar.gz -o /build/unpack.tar.gz
curl -L https://github.com/nzbgetcom/build-files/releases/download/v4.0/android-unpack.tar.gz -o /build/unpack.tar.gz
tar zxf /build/unpack.tar.gz -C /build

- name: Download build artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
mkdir -p /build/lib
curl -L https://github.com/nzbgetcom/build-files/releases/download/v1.0/freebsd-sysroot.tar.gz -o /build/freebsd/sysroot.tar.gz
curl -L https://github.com/nzbgetcom/build-files/releases/download/v3.0/lib-x86_64-bsd.tar.gz -o /build/lib/lib.tar.gz
curl -L https://github.com/nzbgetcom/build-files/releases/download/v3.0/freebsd-unpack.tar.gz -o /build/unpack.tar.gz
curl -L https://github.com/nzbgetcom/build-files/releases/download/v4.0/freebsd-unpack.tar.gz -o /build/unpack.tar.gz
tar zxf /build/freebsd/sysroot.tar.gz -C /build/freebsd
tar zxf /build/lib/lib.tar.gz -C /build/lib
tar zxf /build/unpack.tar.gz -C /build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
run: |
sudo mkdir -p /build
sudo chown $USER:$USER /build
curl -L https://github.com/nzbgetcom/build-files/releases/download/v3.0/linux-unpack.tar.gz -o /build/unpack.tar.gz
curl -L https://github.com/nzbgetcom/build-files/releases/download/v4.0/linux-unpack.tar.gz -o /build/unpack.tar.gz
tar zxf /build/unpack.tar.gz -C /build

- name: Download build artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
Invoke-WebRequest https://github.com/nzbgetcom/build-files/releases/download/v3.0/vcpkg-windows-x${{ matrix.arch }}.zip -OutFile "${{ github.workspace }}\vcpkg.zip"
Rename-Item -path "C:\vcpkg" -NewName "C:\vcpkg.old"
Expand-Archive -Path "${{ github.workspace }}\vcpkg.zip" -DestinationPath C:\
Invoke-WebRequest https://github.com/nzbgetcom/build-files/releases/download/v3.0/nzbget-windows-tools.zip -OutFile "${{ github.workspace }}\tools.zip"
Invoke-WebRequest https://github.com/nzbgetcom/build-files/releases/download/v4.0/nzbget-windows-tools.zip -OutFile "${{ github.workspace }}\tools.zip"
Expand-Archive -Path "${{ github.workspace }}\tools.zip" -DestinationPath C:\

- name: Build nzbget ${{ matrix.arch }}-bit / ${{ matrix.type }} binary
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Prepare build environment
run: |
$ProgressPreference = "SilentlyContinue"
Invoke-WebRequest https://github.com/nzbgetcom/build-files/releases/download/v3.0/nzbget-windows-tools.zip -OutFile "${{ github.workspace }}\tools.zip"
Invoke-WebRequest https://github.com/nzbgetcom/build-files/releases/download/v4.0/nzbget-windows-tools.zip -OutFile "${{ github.workspace }}\tools.zip"
Expand-Archive -Path "${{ github.workspace }}\tools.zip" -DestinationPath C:\
New-Item build -ItemType Directory -ErrorAction SilentlyContinue | Out-Null
Copy-Item Release* build -Recurse -ErrorAction SilentlyContinue
Expand Down
2 changes: 1 addition & 1 deletion linux/build-nzbget.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FREEBSD_CLANG_VER=14
# unpackers versions
UNRAR6_VERSION=6.2.12
UNRAR7_VERSION=7.1.10
ZIP7_VERSION=2408
ZIP7_VERSION=2501

# libs versions
NCURSES_VERSION=6.5
Expand Down
2 changes: 1 addition & 1 deletion osx/build-nzbget.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set -o errexit

# unpackers versions
UNRAR_VERSION=712
ZIP7_VERSION=2408
ZIP7_VERSION=2501

# make jobs
JOBS=$(sysctl -n hw.ncpu)
Expand Down
2 changes: 1 addition & 1 deletion windows/build-nzbget.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Function DownloadUnpackers {
$UrlUnrar64="https://www.rarlab.com/rar/unrarw64.exe"
$UrlRar32="https://www.rarlab.com/rar/winrar-x32-701.exe"
$UrlRar64="https://www.rarlab.com/rar/winrar-x64-713.exe"
$Url7Z="https://www.7-zip.org/a/7z2408-extra.7z"
$Url7Z="https://www.7-zip.org/a/7z2501-extra.7z"

$ImageDir="$ToolsRoot\image"
Write-Host "Downloading unpackers to $ImageDir"
Expand Down