mirror of
https://github.com/Luzifer/elb-instance-status.git
synced 2025-01-10 11:41:56 +00:00
Compare commits
3 commits
84df5e9f1a
...
686c0f2bba
Author | SHA1 | Date | |
---|---|---|---|
686c0f2bba | |||
ec10e20e12 | |||
95473e70f3 |
3 changed files with 20 additions and 30 deletions
32
.github/workflows/test-and-build.yml
vendored
32
.github/workflows/test-and-build.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: luzifer/archlinux
|
image: luzifer/gh-arch-env
|
||||||
env:
|
env:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
GOPATH: /go
|
GOPATH: /go
|
||||||
|
@ -25,28 +25,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Enable custom AUR package repo
|
- uses: actions/checkout@v4
|
||||||
run: echo -e "[luzifer]\nSigLevel = Never\nServer = https://archrepo.hub.luzifer.io/\$arch" >>/etc/pacman.conf
|
with:
|
||||||
|
show-progress: false
|
||||||
- name: Install required packages
|
|
||||||
run: |
|
|
||||||
pacman -Syy --noconfirm \
|
|
||||||
awk \
|
|
||||||
curl \
|
|
||||||
diffutils \
|
|
||||||
git \
|
|
||||||
go \
|
|
||||||
golangci-lint-bin \
|
|
||||||
make \
|
|
||||||
nodejs-lts-hydrogen \
|
|
||||||
npm \
|
|
||||||
tar \
|
|
||||||
trivy \
|
|
||||||
unzip \
|
|
||||||
which \
|
|
||||||
zip
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Marking workdir safe
|
- name: Marking workdir safe
|
||||||
run: git config --global --add safe.directory /__w/elb-instance-status/elb-instance-status
|
run: git config --global --add safe.directory /__w/elb-instance-status/elb-instance-status
|
||||||
|
@ -58,11 +39,6 @@ jobs:
|
||||||
|
|
||||||
- name: Build release
|
- name: Build release
|
||||||
run: make publish
|
run: make publish
|
||||||
env:
|
|
||||||
FORCE_SKIP_UPLOAD: 'true'
|
|
||||||
MOD_MODE: readonly
|
|
||||||
NO_TESTS: 'true'
|
|
||||||
PACKAGES: '.'
|
|
||||||
|
|
||||||
- name: Extract changelog
|
- name: Extract changelog
|
||||||
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
# 1.1.3 / 2024-04-28
|
||||||
|
|
||||||
|
* Fix memory leak as of unclosed loggers
|
||||||
|
|
||||||
# 1.1.2 / 2024-04-20
|
# 1.1.2 / 2024-04-20
|
||||||
|
|
||||||
* Fix: Cleanup context after checks have run
|
* Fix: Cleanup context after checks have run
|
||||||
|
|
14
checks.go
14
checks.go
|
@ -39,12 +39,22 @@ func executeAndRegisterCheck(ctx context.Context, checkID string) {
|
||||||
var (
|
var (
|
||||||
check = checks[checkID]
|
check = checks[checkID]
|
||||||
logger = logrus.WithField("check_id", checkID)
|
logger = logrus.WithField("check_id", checkID)
|
||||||
|
stderr = logger.WithField("stream", "STDERR").Writer()
|
||||||
|
stdout = logger.WithField("stream", "STDOUT").Writer()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
for _, c := range []io.Closer{stderr, stdout} {
|
||||||
|
if err := c.Close(); err != nil {
|
||||||
|
logrus.WithError(err).Error("closing check log-writer (leaked mem)")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
cmd := exec.Command("/bin/bash", "-e", "-o", "pipefail", "-c", check.Command) //#nosec G204 // Intended to run an user-defined command
|
cmd := exec.Command("/bin/bash", "-e", "-o", "pipefail", "-c", check.Command) //#nosec G204 // Intended to run an user-defined command
|
||||||
cmd.Stderr = logger.WithField("stream", "STDERR").Writer()
|
cmd.Stderr = stderr
|
||||||
if cfg.Verbose {
|
if cfg.Verbose {
|
||||||
cmd.Stdout = logger.WithField("stream", "STDOUT").Writer()
|
cmd.Stdout = stdout
|
||||||
}
|
}
|
||||||
err := cmd.Start()
|
err := cmd.Start()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue