File tree 3 files changed +1
-3
lines changed
3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,8 @@ ADD . /app
4
4
WORKDIR /app
5
5
6
6
ARG SOURCE_COMMIT
7
- RUN test -n "$SOURCE_COMMIT"
8
7
ENV SOURCE_COMMIT $SOURCE_COMMIT
9
8
10
-
11
9
# This will also trigger the build process
12
10
RUN yarn install
13
11
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const hasJSONDef = !!process.env.DATABASE_JSON_FILE
10
10
const hasPerilAPIURL = ! ! process . env . PUBLIC_API_ROOT_URL
11
11
const hasHyperEnv = ! ! process . env . x_hyper_content_sha256
12
12
13
+ /** There are three runtime environments for Peril, this says which one it is */
13
14
export const runtimeEnvironment = hasJSONDef
14
15
? RuntimeEnvironment . Standalone
15
16
: hasPerilAPIURL
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ export const triggerSandboxDangerRun = async (
65
65
66
66
// Grab the installation env vars
67
67
const envVars = await getEnvVars ( installation . iID )
68
- console . log ( "OK" , envVars )
69
68
const stdOUT : PerilRunnerBootstrapJSON = {
70
69
installation,
71
70
payload,
You can’t perform that action at this time.
0 commit comments