static nix and cd
This commit is contained in:
parent
d44574c284
commit
8ff0f13109
49
.github/workflows/cd.yml
vendored
49
.github/workflows/cd.yml
vendored
@ -10,6 +10,55 @@ env:
|
|||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
linux-ubuntu:
|
||||||
|
timeout-minutes: 10
|
||||||
|
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: sudo apt update && sudo apt -y install libsodium-dev
|
||||||
|
|
||||||
|
- name: Configure CMake
|
||||||
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ${{ github.event.repository.name }}-ubuntu20.04-x86_64
|
||||||
|
# TODO: do propper packing
|
||||||
|
path: |
|
||||||
|
${{github.workspace}}/build/bin/
|
||||||
|
|
||||||
|
linux-nix-static:
|
||||||
|
timeout-minutes: 10
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: sudo apt update && sudo apt -y install nix
|
||||||
|
|
||||||
|
- name: Nix build
|
||||||
|
run: nix build '.#static'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ${{ github.event.repository.name }}-linux-static-muslc-x86_64
|
||||||
|
# TODO: do propper packing
|
||||||
|
path: |
|
||||||
|
${{github.workspace}}/result/bin/
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
|
|
||||||
|
@ -89,15 +89,17 @@
|
|||||||
in {
|
in {
|
||||||
packages.default = pkgs.stdenv.mkDerivation {
|
packages.default = pkgs.stdenv.mkDerivation {
|
||||||
inherit pname version src nativeBuildInputs cmakeFlags installPhase;
|
inherit pname version src nativeBuildInputs cmakeFlags installPhase;
|
||||||
buildInputs = with pkgs; [
|
|
||||||
#(libsodium.override { stdenv = pkgs.pkgsStatic.stdenv; })
|
# static libsodium, because I can
|
||||||
#pkgsStatic.libsodium
|
buildInputs = with pkgs.pkgsStatic; [
|
||||||
libsodium
|
libsodium
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# all static, kinda useless, since dlopen() wont work to load plugins
|
||||||
packages.static = pkgs.pkgsStatic.stdenv.mkDerivation {
|
packages.static = pkgs.pkgsStatic.stdenv.mkDerivation {
|
||||||
inherit pname version src nativeBuildInputs cmakeFlags installPhase;
|
inherit pname version src nativeBuildInputs cmakeFlags installPhase;
|
||||||
|
|
||||||
buildInputs = with pkgs.pkgsStatic; [
|
buildInputs = with pkgs.pkgsStatic; [
|
||||||
libsodium
|
libsodium
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user