From 3adfe154f2652fea01114a3812138ae64cdd7273 Mon Sep 17 00:00:00 2001 From: Oliver Gibson Date: Mon, 21 Mar 2022 14:13:27 -0300 Subject: [PATCH 1/2] init sessionInfo --- pipeline-runner/init.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipeline-runner/init.R b/pipeline-runner/init.R index 90b66800..74b89672 100644 --- a/pipeline-runner/init.R +++ b/pipeline-runner/init.R @@ -323,6 +323,8 @@ init <- function() { states <- paws::sfn(config=pipeline_config$aws_config) message("Loaded step function") + print(sessionInfo()) + flog.layout(layout.simple) flog.threshold(ERROR) From 366c94745259aad0b04400ab8b5b7560c2b2d47d Mon Sep 17 00:00:00 2001 From: Oliver Gibson Date: Mon, 21 Mar 2022 15:45:45 -0300 Subject: [PATCH 2/2] test remove cache --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a82eb935..c40177bb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -152,13 +152,12 @@ jobs: name: Build Docker images run: |- docker build --target builder \ - --cache-from=$PREVIOUS_IMAGE_NAME-builder \ + --no-cache\ --build-arg GITHUB_PAT=$GITHUB_PAT \ --tag $IMAGE_NAME-builder . docker build --target prod \ - --cache-from=$IMAGE_NAME-builder \ - --cache-from=$PREVIOUS_IMAGE_NAME \ + --no-cache\ --build-arg GITHUB_PAT=$GITHUB_PAT \ --tag $IMAGE_NAME . env: