ci: remove pre-common-ci vestiges

This commit is contained in:
Devan Carpenter 2024-09-03 14:23:29 -05:00
parent dfaba32a7a
commit 759c568c0e
No known key found for this signature in database
GPG Key ID: AC0ABA31866A7E76
2 changed files with 0 additions and 74 deletions

View File

@ -1,26 +0,0 @@
#!/usr/bin/env bash
# Test all commits on this branch but the last one.
#
# Used in the all_commits ci job to ensure all commits build
# and tests pass at least for the sequoia-openpgp crate.
# Use dummy identity to make git rebase happy.
git config user.name "C.I. McTestface"
git config user.email "ci.mctestface@example.com"
# If the previous commit already is on main we're done.
git merge-base --is-ancestor HEAD~ origin/main &&
echo "All commits tested already" &&
exit 0
# Leave out the last commit - it has already been checked.
git checkout HEAD~
git rebase origin/main \
--exec 'echo ===; echo ===; echo ===; git log -n 1;' \
--exec 'cargo test -p sequoia-sq' &&
echo "All commits passed tests" &&
exit 0
# The rebase failed - probably because a test failed.
git rebase --abort; exit 1

View File

@ -1,48 +0,0 @@
[advisories]
ignore = [
"RUSTSEC-2020-0159",
"RUSTSEC-2020-0071", # chrono not affected by time 0.1 issue
# fehler is unmaintained.
#
# fehler is used by subplot and thus an indirect dependency. Remove
# when a new version subplot is released without fehler. See
# https://gitlab.com/subplot/subplot/-/issues/340.
"RUSTSEC-2023-0067",
# yaml-rust is unmaintained.
#
# yaml-rust is used by subplot/roadmap/serde_yaml thus an indirect
# dependency. Remove when a new version of roadmap is released that
# uses a newer version of serde_yaml. See
# https://gitlab.com/larswirzenius/roadmap/-/issues/13
"RUSTSEC-2024-0320",
]
unmaintained = "deny"
yanked = "deny"
[bans]
multiple-versions = "allow"
deny = [
# does not have responsible disclosure policy:
# https://github.com/briansmith/ring#bug-reporting
{name = "ring"},
]
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"BSL-1.0",
"CC0-1.0",
"GPL-2.0",
"GPL-3.0",
"ISC",
"LGPL-2.0",
"LGPL-3.0",
"MIT",
"MIT-0",
"MPL-2.0",
"Unicode-DFS-2016",
"Unicode-3.0",
]