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

v3.7.2 #1021

Merged
merged 41 commits into from
Mar 9, 2022
Merged

v3.7.2 #1021

Changes from 3 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
e98451e
Remove unused age code
hiddeco Mar 30, 2021
c5b1298
Match file path relative to config file's directory (2) (#853)
paulolieuthier Apr 12, 2021
7626399
fix missing argument in encrypting with age section (#860)
damienleger Apr 20, 2021
3acf53e
Correct path to age keys.txt in documentation (#861)
aodinokov Apr 23, 2021
5af8e63
Prevent comment duplication. (#866)
felixfontein May 8, 2021
688fa22
Remove SOPS_GPG_KEYSERVER reference in README.rst
Enrico204 Jun 2, 2021
02d57ca
Tests should not fail fast
ikedam Jul 24, 2021
6130ffe
Use the key of release@mozilla.com for the unit test (#882) (#906)
ikedam Jul 24, 2021
56bbf84
Added support for go 1.16 and darwin-arm64
nklmilojevic Jul 26, 2021
72c0ab6
fix: typo in an example
Vampouille Aug 17, 2020
f6e9891
fix a typo
brant4test Dec 12, 2021
086c11d
Support SOPS_AGE_KEY environment variable
choffmeister Feb 14, 2022
a98768b
Fix flakey test run on OSX
acastle Feb 15, 2022
c310cdd
Merge pull request #967 from brant4test/master
ajvb Feb 23, 2022
649deb1
Merge pull request #1008 from acastle/fix/hc-vault-flake-osx
ajvb Feb 23, 2022
5dfbe1e
Merge pull request #883 from Enrico204/readme-remove-gpg-server-env-var
ajvb Feb 24, 2022
6bfd72d
Merge remote-tracking branch 'origin/develop' into sops-age-key-env
choffmeister Feb 24, 2022
dc2267e
Upgrade to go 1.17
ajvb Feb 24, 2022
076f295
rm extra whitespace in CircleCI config
ajvb Feb 24, 2022
7f503bc
Upgrade release job to go 1.17
ajvb Feb 24, 2022
4bd3e5a
Update pip package name in Dockerfile
ajvb Feb 24, 2022
9a0eb2d
Merge pull request #1012 from mozilla/ajvb/go-upgrade
ajvb Feb 24, 2022
be5a02b
Merge pull request #721 from Vampouille/patch-2
ajvb Feb 24, 2022
624c7d0
Merge pull request #842 from hiddeco/remove-unused-age-code
ajvb Feb 24, 2022
b7c58e4
Move age environment variable names to constants
choffmeister Feb 25, 2022
684d338
Merge branch 'develop' of https://github.com/mozilla/sops into mozill…
nklmilojevic Mar 1, 2022
0cfcae6
Merge branch 'mozilla-develop' into develop
nklmilojevic Mar 1, 2022
e5f3992
Merge pull request #911 from nklmilojevic/develop
ajvb Mar 1, 2022
dff9c31
Merge branch 'develop' into sops-age-key-env
ajvb Mar 1, 2022
8fad347
Merge pull request #1006 from choffmeister/sops-age-key-env
ajvb Mar 1, 2022
c586534
Change labeling and upload linux arm64
ajvb Mar 1, 2022
e926348
Merge pull request #1014 from mozilla/ajvb/new-binary-labeling
ajvb Mar 1, 2022
d6bc216
README and author tweaks
ajvb Mar 3, 2022
d559922
Merge pull request #1016 from mozilla/ajvb/ci-badge
ajvb Mar 3, 2022
822ce48
Add arm64 .deb and .rpm builds
FnTm Jun 22, 2021
9d98a82
Merge pull request #891 from FnTm/develop
ajvb Mar 4, 2022
baec2a5
Merge branch 'develop' into feature/testsSholdNotFailFast
ikedam Mar 5, 2022
e801ca3
Merge pull request #909 from ikedam/feature/testsSholdNotFailFast
ajvb Mar 8, 2022
035672f
prep v3.7.2
ajvb Mar 8, 2022
b67c7a7
Fixed CHANGELOG formatting
ajvb Mar 8, 2022
3370591
Merge pull request #1020 from mozilla/ajvb/prep-v3.7.2
ajvb Mar 8, 2022
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
10 changes: 9 additions & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@
set -e
echo "" > coverage.txt

failed=0

for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic $d
go test -race -coverprofile=profile.out -covermode=atomic $d && true
rc=$?
if [ $rc != 0 ]; then
failed=$rc
fi
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done

exit ${failed}