Skip to content

Commit

Permalink
Bumped Node Version. (#725)
Browse files Browse the repository at this point in the history
* Bumped Node Version.

* Updated release binary containers
  • Loading branch information
markopoloparadox authored Feb 19, 2025
1 parent b46da3f commit 6c6b891
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 59 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/releaser_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ jobs:
output_file: output/zips/x86_64-ubuntu-2204-avail-node.tar.gz
- command: ENGINE=podman DISTRO=ubuntu-2404 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-ubuntu-2404-avail-node.tar.gz
- command: ENGINE=podman DISTRO=fedora-39 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-fedora-39-avail-node.tar.gz
- command: ENGINE=podman DISTRO=fedora-40 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-fedora-40-avail-node.tar.gz
- command: ENGINE=podman DISTRO=debian-11 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-debian-11-avail-node.tar.gz
- command: ENGINE=podman DISTRO=fedora-41 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-fedora-41-avail-node.tar.gz
- command: ENGINE=podman DISTRO=debian-12 ZIP=1 ./scripts/binaries/build.sh
output_file: output/zips/x86_64-debian-12-avail-node.tar.gz
- command: ENGINE=podman DISTRO=arch ZIP=1 ./scripts/binaries/build.sh
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test_releaser_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ jobs:
- command: ENGINE=podman DISTRO=ubuntu-2004 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=ubuntu-2204 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=ubuntu-2404 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=fedora-39 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=fedora-40 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=debian-11 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=fedora-41 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=debian-12 ZIP=1 ./scripts/binaries/build.sh
- command: ENGINE=podman DISTRO=arch ZIP=1 ./scripts/binaries/build.sh
steps:
Expand Down
2 changes: 1 addition & 1 deletion node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pub mod service;

mod transaction_state;

pub const NODE_VERSION: &str = "2.2.1";
pub const NODE_VERSION: &str = "2.3.0";
2 changes: 1 addition & 1 deletion scripts/binaries/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DOCKER_IGNORE_FILE="./scripts/binaries/$ARCH/shared.dockerignore"

if ! test -f "$DOCKER_FILE"; then
echo "Unknown option"
echo "Supported DISTRO: ubuntu-2004 ubuntu-2204 ubuntu-2404 fedora-39 fedora-40 debian-11 debian-12 arch"
echo "Supported DISTRO: ubuntu-2004 ubuntu-2204 ubuntu-2404 fedora-41 debian-12 arch"
echo "Supported ARCH: x86_64 arm64"
echo "Supported ENGINE: docker podman"
exit 0
Expand Down
23 changes: 0 additions & 23 deletions scripts/binaries/x86_64/debian-11.Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/binaries/x86_64/debian-12.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:12.5-slim AS builder
FROM debian:12.9-slim AS builder

# This installs all dependencies that we need (besides Rust).
RUN apt update -y && \
Expand Down
23 changes: 0 additions & 23 deletions scripts/binaries/x86_64/fedora-40.Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39 AS builder
FROM fedora:41 AS builder

# This installs all dependencies that we need (besides Rust).
RUN dnf update -y && \
Expand Down

0 comments on commit 6c6b891

Please sign in to comment.