mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
* fix build * nix flake * nix package * static musl build env * make all builds in static env * GH Actions nightly and static workflows * deb package * cmake install {adnl-proxy,blockchain-explorer,create-state,http-proxy,rldp-http-proxy,storage-cli} * nix flake: add static glibc build variant * GH Actions: deb-nightly-{musl,glibc_static}, tests-rolling jobs * rpm package * build blockchain-explorer * GH Actions: deb_rpm-nightly: ubuntu-{latest=>22.04} * crypto/pow-miner: skip install * ghactions: tests-rolling: show tests run, progress * ghactions: deb_rpm-nightly: add manual trigger [skip ci] * nix flake refactor * find_package=>pkg-config(zlib) FindZLIB.cmake can't find static zlib prior to CMake 3.24, so use pkg-config. * nix old glibc build * nix aarch64 support * packages: Populate APT and RPM repos at ton-repo - {deb,rpm}.sh: Separate build and install dirs - rpm.sh: Conditionally include lib/ - Accomodate local CI runs w/act * [skip ci] README packages * fix aarch64 build -Wnoerror=address * [skip ci] rpm set releasever * [skip ci] document local packages upload * m1 build: gate cpu=apple-m1 by clang version * packages: Ship musl binaries + old glibc dylibs * packages: macos build * nix: bump nixpkgs * fix windows CI build * [skip ci] nix: static aarch64 builds * packages: deb,rpm multiarch * ghactions: aarch64 musl deb,rpm build * [skip ci] deb build: deref source links, -x * [skip ci] nix darwin static build * [skip ci] nix common hostPkgs * [skip ci] brew: move formula over to homebrew-ton-repo * [skip ci] nix fix aarch64-linux build * [skip ci] ghactions: nix use GITHUB_TOKEN * [skip ci] Move from ton-repo to gh releases * [skip ci] ghactions aarch64-darwin self-hosted runner * [skip ci] ghactions deb,rpm nightly 10h timeout * [skip ci] fix brew install fixes Errno::EACCES: Permission denied @ dir_s_mkdir - /private/tmp/ton-XXX/bin/.brew_home * [skip ci] ghactions deb,rpm nightly: don't upload ton-packages as we gh release them later * [skip ci] README: brew instructions * [skip ci] nightly linux binaries release * [skip ci] packages: ship macos dylib * [skip ci] ghactions: Run Windows build nightly, upload to gh releases * nix: remove defaultPackage, switch to different oldglibc build method We used to rebuild nixpkgs-stable with old glibc, which broke on aarch64 due to its particular bootstrap toolchain. This just takes nixos 19.09's version of GCC but new dependencies, sidestepping the issue. * fix rpm release, add aur release * fix local (act) ci run * ghactions: linux-nightly: Print out SSH public keys * ghactions: bump cachix actions * nix: default devShell * [skip ci] rpm,aur: Ship lib * [skip ci] packages: windows: Remove CMake files from out * [skip ci] packages: Import chocolatey package * fixup! fix rpm release, add aur release * [skip ci] packages: aarch64-linux: build dylib as well * [skip ci] ghactions: run on self-hosted * [skip ci] ghactions: windows-nightly: Bump nodejs actions * [skip ci] nix: Only add Linux packaging tools on Linux * [skip ci] doc: document direct download binaries in README * fix tonlib android jni ci * fixup! fix tonlib android jni ci * [skip ci] ghactions: Update GH release dates Errata: doesn't update tags. * [skip ci] ghactions: Fix racy brew gh release by splitting arch * initiali commit - binaries only * fixes * fixes * fixes * fixes * remove packages dir for now * add storage-daemon storage-daemon-cli * fix emulator * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 * try macos aarch64 sh * try macos aarch64 sh * try macos aarch64 bash * try macos aarch64 bash * try macos aarch64 bash * try macos aarch64 bash * try macos aarch64 bash * try macos aarch64 bash * try macos aarch64 bash * fix funcfiftlib compilation with emscripten * fix funcfiftlib compilation with emscripten * add github action to compile TON with emscripten * add github action to compile TON with emscripten * add github action to compile TON with emscripten * add github action to compile TON with emscripten * add github action to compile TON with emscripten * add github action to compile TON with emscripten * try macos aarch64 * fix funcfiftlib compilation with emscripten * fix funcfiftlib compilation with emscripten * add github action to compile TON with emscripten * disable aarch64 github actions for now * disable aarch64 github actions for now * trigger all GH actions * trigger all GH actions 2 * trigger all GH actions 3 * trigger all GH actions 4 * trigger all GH actions 5 * put back rldp-http-proxy to win build * put back rldp-http-proxy to win build * dont use pkgConfig for zlib * fix zlib_library * use BUILD_SHARED_LIBS flag for static compilation * test 1 * test 2 * add wasm binaries to release. test 3 * add simple binaries' execution test * build emulator-emscripten * build and add into artifacts wasm tlbc and emulator-emscripten * build and add into artifacts wasm tlbc and emulator-emscripten, 2 * build and add into artifacts wasm tlbc and emulator-emscripten, 3 * build and add into artifacts wasm tlbc and emulator-emscripten, 4 * build emulator-emscripten with static libs * minor nix mac aarch64 fix * add single artifacts to release * bypass $repo to Dockerfile * add wasm artifacts to release * add wasm artifacts to release * add wasm artifacts to release * add wasm artifacts to release * add more artifacts to release; remove compilation against Ubuntu 18.04. * retrieve GITHUB_TOKEN for ton-blockchain/ton * remove binary check for arm64 --------- Co-authored-by: tonthemoon <tonthemoon@mailbox.org>
137 lines
5 KiB
Nix
137 lines
5 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-22.05";
|
|
nixpkgs-trunk.url = "github:nixos/nixpkgs";
|
|
flake-compat = {
|
|
url = "github:edolstra/flake-compat";
|
|
flake = false;
|
|
};
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs-stable, nixpkgs-trunk, flake-compat, flake-utils }:
|
|
let
|
|
ton = { host, pkgs ? host, stdenv ? pkgs.stdenv, staticGlibc ? false
|
|
, staticMusl ? false, staticExternalDeps ? staticGlibc }:
|
|
with host.lib;
|
|
stdenv.mkDerivation {
|
|
pname = "ton";
|
|
version = "dev";
|
|
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = with host;
|
|
[ cmake ninja pkg-config git ] ++
|
|
optionals stdenv.isLinux [ dpkg rpm createrepo_c pacman ];
|
|
buildInputs = with pkgs;
|
|
# at some point nixpkgs' pkgsStatic will build with static glibc
|
|
# then we can skip these manual overrides
|
|
# and switch between pkgsStatic and pkgsStatic.pkgsMusl for static glibc and musl builds
|
|
if !staticExternalDeps then [
|
|
openssl_1_1
|
|
zlib
|
|
libmicrohttpd
|
|
] else
|
|
[
|
|
(openssl_1_1.override { static = true; }).dev
|
|
(zlib.override { shared = false; }).dev
|
|
pkgsStatic.libmicrohttpd.dev
|
|
] ++ optional staticGlibc glibc.static;
|
|
|
|
cmakeFlags = [ "-DTON_USE_ABSEIL=OFF" "-DNIX=ON" ] ++ optionals staticMusl [
|
|
"-DCMAKE_CROSSCOMPILING=OFF" # pkgsStatic sets cross
|
|
] ++ optionals (staticGlibc || staticMusl) [
|
|
"-DCMAKE_LINK_SEARCH_START_STATIC=ON"
|
|
"-DCMAKE_LINK_SEARCH_END_STATIC=ON"
|
|
];
|
|
|
|
LDFLAGS = optional staticExternalDeps (concatStringsSep " " [
|
|
(optionalString stdenv.cc.isGNU "-static-libgcc")
|
|
"-static-libstdc++"
|
|
]);
|
|
|
|
postInstall = ''
|
|
moveToOutput bin "$bin"
|
|
'';
|
|
|
|
outputs = [ "bin" "out" ];
|
|
};
|
|
hostPkgs = system:
|
|
import nixpkgs-stable {
|
|
inherit system;
|
|
overlays = [
|
|
(self: super: {
|
|
zchunk = nixpkgs-trunk.legacyPackages.${system}.zchunk;
|
|
})
|
|
];
|
|
};
|
|
in with flake-utils.lib;
|
|
(nixpkgs-stable.lib.recursiveUpdate
|
|
(eachSystem (with system; [ x86_64-linux aarch64-linux ]) (system:
|
|
let
|
|
host = hostPkgs system;
|
|
# look out for https://github.com/NixOS/nixpkgs/issues/129595 for progress on better infra for this
|
|
#
|
|
# nixos 19.09 ships with glibc 2.27
|
|
# we could also just override glibc source to a particular release
|
|
# but then we'd need to port patches as well
|
|
nixos1909 = (import (builtins.fetchTarball {
|
|
url = "https://channels.nixos.org/nixos-19.09/nixexprs.tar.xz";
|
|
sha256 = "1vp1h2gkkrckp8dzkqnpcc6xx5lph5d2z46sg2cwzccpr8ay58zy";
|
|
}) { inherit system; });
|
|
glibc227 = nixos1909.glibc // { pname = "glibc"; };
|
|
stdenv227 = let
|
|
cc = host.wrapCCWith {
|
|
cc = nixos1909.buildPackages.gcc-unwrapped;
|
|
libc = glibc227;
|
|
bintools = host.binutils.override { libc = glibc227; };
|
|
};
|
|
in (host.overrideCC host.stdenv cc);
|
|
in rec {
|
|
packages = rec {
|
|
ton-normal = ton { inherit host; };
|
|
ton-static = ton {
|
|
inherit host;
|
|
stdenv = host.makeStatic host.stdenv;
|
|
staticGlibc = true;
|
|
};
|
|
ton-musl =
|
|
let pkgs = nixpkgs-stable.legacyPackages.${system}.pkgsStatic;
|
|
in ton {
|
|
inherit host;
|
|
inherit pkgs;
|
|
stdenv =
|
|
pkgs.gcc12Stdenv; # doesn't build on aarch64-linux w/default GCC 9
|
|
staticMusl = true;
|
|
};
|
|
ton-oldglibc = (ton {
|
|
inherit host;
|
|
stdenv = stdenv227;
|
|
staticExternalDeps = true;
|
|
});
|
|
ton-oldglibc_staticbinaries = host.symlinkJoin {
|
|
name = "ton";
|
|
paths = [ ton-musl.bin ton-oldglibc.out ];
|
|
};
|
|
};
|
|
devShells.default =
|
|
host.mkShell { inputsFrom = [ packages.ton-normal ]; };
|
|
})) (eachSystem (with system; [ x86_64-darwin aarch64-darwin ]) (system:
|
|
let host = hostPkgs system;
|
|
in rec {
|
|
packages = rec {
|
|
ton-normal = ton { inherit host; };
|
|
ton-static = ton {
|
|
inherit host;
|
|
stdenv = host.makeStatic host.stdenv;
|
|
staticExternalDeps = true;
|
|
};
|
|
ton-staticbin-dylib = host.symlinkJoin {
|
|
name = "ton";
|
|
paths = [ ton-static.bin ton-normal.out ];
|
|
};
|
|
};
|
|
devShells.default =
|
|
host.mkShell { inputsFrom = [ packages.ton-normal ]; };
|
|
})));
|
|
}
|