From 644f76ba7c0dcfad20b4c7c8ed8ebadf1b25a053 Mon Sep 17 00:00:00 2001 From: Gavin Date: Mon, 15 Apr 2024 14:34:51 -0700 Subject: [PATCH] Can't get rid of jars until we swap to the new workspace controller --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 079d5c0..b27498c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,6 +49,10 @@ jobs: # move to parent dir of homedir to install binaries etc cd .. + # set up jars + git clone https://github.com/kbase/jars + export JARSDIR=$(pwd)/jars/lib/jars/ + # set up mongo wget -q http://fastdl.mongodb.org/linux/${{matrix.mongo}}.tgz tar xfz ${{matrix.mongo}}.tgz @@ -57,6 +61,7 @@ jobs: # set up test config cd $HOMEDIR cp -n test.cfg.example test.cfg + sed -i "s#^test.jars.dir.*#test.jars.dir=$JARSDIR#" test.cfg sed -i "s#^test.temp.dir=.*#test.temp.dir=temp_test_dir#" test.cfg sed -i "s#^test.mongo.exe.*#test.mongo.exe=$MONGOD#" test.cfg sed -i "s#^test.mongo.useWiredTiger.*#test.mongo.useWiredTiger=${{matrix.wired_tiger}}#" test.cfg