-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add sentry * chore: replace black, isort, flake8 w/ ruff * feat: sentry integration * chore: remove test dataset * ci: add sentry dsn to env * ci: add deployment env var & commit SHA to pipelines
- Loading branch information
Kenneth Domingo
authored
Feb 12, 2024
1 parent
0848ac5
commit 5e86deb
Showing
16 changed files
with
183 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- production | ||
|
||
pr: none | ||
|
||
pool: | ||
vmImage: ubuntu-latest | ||
|
||
variables: | ||
- template: templates/variables.yaml | ||
|
||
stages: | ||
- template: templates/workflow.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- staging | ||
|
||
pr: none | ||
|
||
pool: | ||
vmImage: ubuntu-latest | ||
|
||
variables: | ||
- template: templates/variables.yaml | ||
|
||
stages: | ||
- template: templates/workflow.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
FROM maven:3.9-eclipse-temurin-11-alpine as base | ||
FROM maven:3.9-eclipse-temurin-11-alpine AS base | ||
|
||
FROM base as build | ||
FROM base AS build | ||
|
||
WORKDIR /tmp/custom-sas-provider | ||
|
||
COPY ./custom-sas-provider ./ | ||
|
||
RUN mvn clean package | ||
|
||
FROM base as dev | ||
FROM base AS dev | ||
|
||
WORKDIR /tmp | ||
|
||
RUN wget https://github.com/delta-io/delta-sharing/releases/download/v1.0.2/delta-sharing-server-1.0.2.zip && \ | ||
unzip delta-sharing-server-1.0.2.zip | ||
RUN wget https://github.com/delta-io/delta-sharing/releases/download/v1.0.4/delta-sharing-server-1.0.4.zip && \ | ||
unzip delta-sharing-server-1.0.4.zip | ||
|
||
WORKDIR /app | ||
|
||
RUN cp -R /tmp/delta-sharing-server-1.0.2/* ./ | ||
|
||
COPY --from=build /tmp/custom-sas-provider/target/custom-sas-provider-1.0-SNAPSHOT.jar ./lib/internal.giga.customSasProvider.custom-sas-provider-1.0-SNAPSHOT.jar | ||
RUN cp -R /tmp/delta-sharing-server-1.0.4/* ./ | ||
|
||
CMD [ "./bin/delta-sharing-server", "--", "--config", "./conf/delta-sharing-server.yaml" ] |
Oops, something went wrong.