Complete the removal of Sentry

This commit is contained in:
Jamie Curnow 2023-07-24 14:41:46 +10:00
parent aae95798b2
commit fd277973cd
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E
6 changed files with 21 additions and 29 deletions

4
Jenkinsfile vendored
View File

@ -75,7 +75,6 @@ pipeline {
}
stage('Backend') {
steps {
withCredentials([string(credentialsId: 'npm-sentry-dsn', variable: 'SENTRY_DSN')]) {
withCredentials([usernamePassword(credentialsId: 'oss-index-token', passwordVariable: 'NANCY_TOKEN', usernameVariable: 'NANCY_USER')]) {
sh './scripts/ci/test-backend'
}
@ -91,7 +90,6 @@ pipeline {
.
'''
}
}
post {
success {
archiveArtifacts allowEmptyArchive: false, artifacts: 'bin/*'
@ -215,7 +213,6 @@ pipeline {
}
}
steps {
withCredentials([string(credentialsId: 'npm-sentry-dsn', variable: 'SENTRY_DSN')]) {
withCredentials([usernamePassword(credentialsId: 'jc21-dockerhub', passwordVariable: 'dpass', usernameVariable: 'duser')]) {
sh 'docker login -u "${duser}" -p "${dpass}"'
sh "./scripts/buildx --push ${buildxPushTags}"
@ -223,7 +220,6 @@ pipeline {
}
}
}
}
stage('Docs Deploy') {
when {
allOf {

View File

@ -14,14 +14,12 @@ ARG BUILD_COMMIT
ARG BUILD_VERSION
ARG GOPRIVATE
ARG GOPROXY
ARG SENTRY_DSN
ENV BUILD_COMMIT="${BUILD_COMMIT:-dev}" \
BUILD_VERSION="${BUILD_VERSION:-0.0.0}" \
CGO_ENABLED=0 \
GOPRIVATE="${GOPRIVATE:-}" \
GOPROXY="${GOPROXY:-}" \
SENTRY_DSN="${SENTRY_DSN:-}"
GOPROXY="${GOPROXY:-}"
COPY scripts /scripts
COPY backend /app

View File

@ -24,7 +24,6 @@ docker buildx build \
--build-arg SKIP_TESTS=1 \
--build-arg GOPRIVATE="${GOPRIVATE:-}" \
--build-arg GOPROXY="${GOPROXY:-}" \
--build-arg SENTRY_DSN="${SENTRY_DSN:-}" \
--platform linux/amd64,linux/arm64,linux/arm/7 \
--progress plain \
--pull \

View File

@ -60,7 +60,7 @@ build_backend() {
go build \
-tags 'json1' \
-buildvcs=false \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION} -X main.sentryDSN=${SENTRY_DSN:-}" \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION}" \
-o "/app/bin/$FILENAME" \
./cmd/server
}

View File

@ -58,7 +58,6 @@ else
-e GOPRIVATE="${GOPRIVATE:-}" \
-e GOPROXY="${GOPROXY:-}" \
-e NOW="$NOW" \
-e SENTRY_DSN="${SENTRY_DSN:-}" \
-e TZ="${TZ:-Australia/Brisbane}" \
-v "$(pwd):/app" \
-w '/app/backend' \

View File

@ -26,14 +26,14 @@ echo -e "${BLUE} ${CYAN}Building binaries for ${YELLOW}${GOARCH} (${TARGETPLA
go build \
-tags 'json1' \
-buildvcs=false \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION} -X main.sentryDSN=${SENTRY_DSN:-}" \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION}" \
-o "${1:-/dist/server}" \
./cmd/server
# ipranges
go build \
-buildvcs=false \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION} -X main.sentryDSN=${SENTRY_DSN:-}" \
-ldflags "-w -s -X main.commit=${BUILD_COMMIT:-notset} -X main.version=${BUILD_VERSION}" \
-o "${2:-/dist/ipranges}" \
./cmd/ipranges