mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-18 21:34:37 +03:00
Compare commits
12 Commits
v0.1.1-rc.
...
v0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
97f5d75838 | ||
|
|
aa15872f2b | ||
|
|
1d10e7f036 | ||
|
|
cc01472942 | ||
|
|
4b33938d66 | ||
|
|
f4c351c74b | ||
|
|
12522e90ea | ||
|
|
0995317fa6 | ||
|
|
4b4902cacd | ||
|
|
c389d39fbd | ||
|
|
12933de42b | ||
|
|
9b3f4670af |
8
.github/workflows/nix.yaml
vendored
8
.github/workflows/nix.yaml
vendored
@@ -56,14 +56,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: ${{ matrix.derivation }}-${{ matrix.nix-system }}
|
name: ${{ matrix.derivation }}-${{ matrix.nix-system }}
|
||||||
path: ${{ matrix.derivation }}-${{ matrix.nix-system }}
|
path: ${{ matrix.derivation }}-${{ matrix.nix-system }}
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: github.ref_type == 'tag' && startsWith( github.ref_name, 'v') && contains(matrix.derivation, 'static')
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
${{ matrix.derivation }}-${{ matrix.nix-system }}
|
|
||||||
LICENSE-MIT
|
|
||||||
LICENSE-APACHE
|
|
||||||
- name: Deploy PDF artifacts
|
- name: Deploy PDF artifacts
|
||||||
if: ${{ matrix.derivation == 'whitepaper' && github.ref == 'refs/heads/main' }}
|
if: ${{ matrix.derivation == 'whitepaper' && github.ref == 'refs/heads/main' }}
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
|||||||
28
.github/workflows/release.yaml
vendored
Normal file
28
.github/workflows/release.yaml
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
name: Release
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags: ["v*"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Build ${{ matrix.derivation }} on ${{ matrix.nix-system }}
|
||||||
|
runs-on:
|
||||||
|
- nix
|
||||||
|
- ${{ matrix.nix-system }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
nix-system:
|
||||||
|
- x86_64-linux
|
||||||
|
# - aarch64-linux
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build release-package for ${{ matrix.nix-system }}
|
||||||
|
run: nix build .#release-package --print-build-logs
|
||||||
|
- name: Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
result/*
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -865,7 +865,7 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rosenpass"
|
name = "rosenpass"
|
||||||
version = "0.1.1-rc.3"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"base64",
|
"base64",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rosenpass"
|
name = "rosenpass"
|
||||||
version = "0.1.1-rc.3"
|
version = "0.1.1"
|
||||||
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
|
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|||||||
23
flake.nix
23
flake.nix
@@ -132,6 +132,29 @@
|
|||||||
default = rosenpass;
|
default = rosenpass;
|
||||||
rosenpass = rpDerivation pkgs;
|
rosenpass = rpDerivation pkgs;
|
||||||
rosenpass-oci-image = rosenpassOCI "rosenpass";
|
rosenpass-oci-image = rosenpassOCI "rosenpass";
|
||||||
|
|
||||||
|
# derivation for the release
|
||||||
|
release-package =
|
||||||
|
let
|
||||||
|
version = cargoToml.package.version;
|
||||||
|
package =
|
||||||
|
if pkgs.hostPlatform.isLinux then
|
||||||
|
packages.rosenpass-static
|
||||||
|
else packages.rosenpass;
|
||||||
|
oci-image =
|
||||||
|
if pkgs.hostPlatform.isLinux then
|
||||||
|
packages.rosenpass-static-oci-image
|
||||||
|
else packages.rosenpass-oci-image;
|
||||||
|
in
|
||||||
|
pkgs.runCommandNoCC "lace-result" { }
|
||||||
|
''
|
||||||
|
mkdir {bin,$out}
|
||||||
|
cp ${./.}/rp bin/
|
||||||
|
tar -cvf $out/rosenpass-${system}-${version}.tar bin/rp \
|
||||||
|
-C ${package} bin/rosenpass
|
||||||
|
cp ${oci-image} \
|
||||||
|
$out/rosenpass-oci-image-${system}-${version}.tar.gz
|
||||||
|
'';
|
||||||
} // (if pkgs.stdenv.isLinux then rec {
|
} // (if pkgs.stdenv.isLinux then rec {
|
||||||
rosenpass-static = rpDerivation pkgs.pkgsStatic;
|
rosenpass-static = rpDerivation pkgs.pkgsStatic;
|
||||||
rosenpass-static-oci-image = rosenpassOCI "rosenpass-static";
|
rosenpass-static-oci-image = rosenpassOCI "rosenpass-static";
|
||||||
|
|||||||
Reference in New Issue
Block a user