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/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
sbom: false

build-image-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: [test, build-frontend]
permissions:
contents: read
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- goos: linux
goarch: arm64
runner: ubuntu-latest
cc: aarch64-linux-gnu-gcc
cc: 'zig cc -target aarch64-linux-musl'
# macOS builds
- goos: darwin
goarch: amd64
Expand Down Expand Up @@ -132,14 +132,12 @@ jobs:
install: mingw-w64-x86_64-gcc
update: false

# Install cross-compilation tools
- name: Install cross-compilation tools
if: matrix.cc != '' && runner.os == 'Linux'
run: |
sudo apt-get update -qq
if [ "${{ matrix.goos }}" = "linux" ] && [ "${{ matrix.goarch }}" = "arm64" ]; then
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
fi
# Install Zig for cross-compilation (Linux ARM64)
- name: Install Zig
if: matrix.goos == 'linux' && matrix.goarch == 'arm64'
uses: mlugg/setup-zig@v2
with:
version: 0.14.1

# Extract version info
- name: Extract version info
Expand Down Expand Up @@ -513,7 +511,7 @@ jobs:
sbom: false

build-image-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: [test, build-frontend]
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/google/uuid v1.6.0
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
github.com/javi11/nntppool/v4 v4.8.0
github.com/javi11/nntppool/v4 v4.9.0
github.com/javi11/nxg v0.1.0
github.com/javi11/nzbparser v0.5.4
github.com/javi11/par2go v0.0.7
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo
github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4=
github.com/jackmordaunt/icns v1.0.0 h1:RYSxplerf/l/DUd09AHtITwckkv/mqjVv4DjYdPmAMQ=
github.com/jackmordaunt/icns v1.0.0/go.mod h1:7TTQVEuGzVVfOPPlLNHJIkzA6CoV7aH1Dv9dW351oOo=
github.com/javi11/nntppool/v4 v4.8.0 h1:IcZPTwXWu1fohTMMQoj6WkW+Gsz8rhuBWFtdFVIIDbk=
github.com/javi11/nntppool/v4 v4.8.0/go.mod h1:+UtisJLDFLXBSkW9R6uCRgdp3lS/+6pLAk7L+Wt6LMw=
github.com/javi11/nntppool/v4 v4.9.0 h1:HoAXUP6GhOPqsXIdHp5omqZ8ya8wD9zPbQyTmEmTuzM=
github.com/javi11/nntppool/v4 v4.9.0/go.mod h1:+UtisJLDFLXBSkW9R6uCRgdp3lS/+6pLAk7L+Wt6LMw=
github.com/javi11/nxg v0.1.0 h1:CTThldYlaVIPIhpkrMw0HcTD0NLrW1uYMoDILjjEOtM=
github.com/javi11/nxg v0.1.0/go.mod h1:+GvYpp+y1oq+qBOWxFMvfTjtin/0zCeomWfjiPkiu8A=
github.com/javi11/nzbparser v0.5.4 h1:0aYyORZipp7iX8eNpT/efnzCeVO+9C0sE2HWCGc/JaI=
Expand Down
Loading