Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backfill versions 8.7-9.0, 9.2, for completeness #12

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from 1 commit
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
22 changes: 21 additions & 1 deletion versions.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,30 @@
portable = "12c58dcd8f61d18567fda0689ba64cb4b8c70a2d";
openbsd = "dfa32b728c451dab0c97c854fbe23bc7b9be25ad";
};
"9.2" = {
portable = "6d8627a9ef5606f4df11534e3b88fa52b3004bb1";
openbsd = "7d2c70c4b4060e915c367d1e9366a8c098cc1bc4";
};
"9.1" = {
portable = "a8aadf11866008666e17c65da76132659942fe2c";
openbsd = "a59ae351b4f900cf90b01e755118290047fcdb28";
};
"9.0" = {
portable = "47fb45fd13e402a21b51c794a76511a526b5d556";
openbsd = "d64b7617dc536b6c76a0c87113c4586479c4a3d2";
};
"8.9" = {
portable = "ee15321f92158f5b78ca7da3b33a7a7d26fcf91d";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see 70efa83594d4589521814fa782e1e453caf97697 as the portable hash for 8.9 here: https://github.com/rpki-client/rpki-client-portable/tags

openbsd = "85613947df83972df4a3206565587caceeab95d0";
};
"8.8" = {
portable = "6453604c2c565a67853ac09758c7d7332f98cb0c";
openbsd = "70024ad08f9d60fa6627c0cdf8ba7618d5e83136";
};
"8.7" = {
portable = "b55270c7f1b7a876a887edffb479ac413dd36c3d";
openbsd = "979fa5f4d8fd7d2e02c6fddef0d6ff9a04944547";
};
"8.6" = {
portable = "aa554ab91add82bb68de00d323e02c9d20621aee";
openbsd = "082ed00f2b1f8b1b578b2bc9eae84a5fc1923d68";
Expand All @@ -24,5 +44,5 @@
versionSet =
if builtins.hasAttr version versionHashes
then builtins.getAttr version versionHashes
else throw "${version} is not valid RPKI version";
else throw "${version} is not valid RPKI version (minimum version: 8.4)";
in "--override-input rpki-client-src github:rpki-client/rpki-client-portable/${versionSet.portable} --override-input rpki-openbsd-src github:rpki-client/rpki-client-openbsd/${versionSet.openbsd}"
Loading