diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 17:21:38 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 18:31:57 -0700 |
commit | bfdef4064b4a172a2027f3813ab88f38728d61c0 (patch) | |
tree | 94babba33cd28aaacad39b49936b803486784a73 /worker/jobs/ci_pipeline.run | |
parent | 9e220eca4545982df83ffcaa66a9b050a3d6f24e (diff) | |
download | ci-bfdef4064b4a172a2027f3813ab88f38728d61c0.tar.gz ci-bfdef4064b4a172a2027f3813ab88f38728d61c0.zip |
Fixes
Diffstat (limited to 'worker/jobs/ci_pipeline.run')
-rwxr-xr-x | worker/jobs/ci_pipeline.run | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/worker/jobs/ci_pipeline.run b/worker/jobs/ci_pipeline.run index 6bee929..ff1efa7 100755 --- a/worker/jobs/ci_pipeline.run +++ b/worker/jobs/ci_pipeline.run @@ -3,14 +3,4 @@ # add scripts executed by the pipeline export PATH=$PATH:$PIPELINE_PATH -containerid=$(cat /etc/hostname) -isindocker=$(docker ps -q -f "id=$containerid") -if [ -n "$isindocker" ]; then - executorLaminarPath=$(docker inspect "$containerid" | jq -r '.[0].Mounts[] | select(.Destination == "/var/lib/laminar") | .Source') -else - executorLaminarPath=$(pwd) -fi - -export executorLaminarPath - checkout_ci.js |