From 4461d55c6534b21f5d98a609f3e8041106fc141c Mon Sep 17 00:00:00 2001 From: Nguyen Dang Date: Tue, 31 Dec 2024 15:55:19 +0700 Subject: [PATCH] update docker commands in tests --- .github/workflows/run_pr_tests.yml | 6 ++---- .github/workflows/run_push_tests.yml | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run_pr_tests.yml b/.github/workflows/run_pr_tests.yml index 50127be..fbd04d4 100644 --- a/.github/workflows/run_pr_tests.yml +++ b/.github/workflows/run_pr_tests.yml @@ -56,17 +56,15 @@ jobs: git clone -b "$CURRENT_BRANCH" https://github.com/stacs-cp/AutoIG.git # Install Necessary Dependencies into AutoIG Bin - bash bin/install-savilerow.sh bash bin/install-mininzinc.sh bash bin/install-runsolver.sh bash bin/install-irace.sh - bash bin/install-ortools.sh bash bin/install-yuck.sh bash bin/install-picat.sh # Set Paths - . bin/set-path.sh - AUTOIG=$(pwd) + . bin/container-set-path.sh + export AUTOIG=$(pwd) # Navigate to test directory cd scripts/testScripts diff --git a/.github/workflows/run_push_tests.yml b/.github/workflows/run_push_tests.yml index 01ad183..782dad4 100644 --- a/.github/workflows/run_push_tests.yml +++ b/.github/workflows/run_push_tests.yml @@ -57,17 +57,15 @@ jobs: git clone -b "$CURRENT_BRANCH" https://github.com/stacs-cp/AutoIG.git # Install Necessary Dependencies into AutoIG Bin - bash bin/install-savilerow.sh bash bin/install-mininzinc.sh bash bin/install-runsolver.sh bash bin/install-irace.sh - bash bin/install-ortools.sh bash bin/install-yuck.sh bash bin/install-picat.sh # Set Paths - . bin/set-path.sh - AUTOIG=$(pwd) + . bin/container-set-path.sh + export AUTOIG=$(pwd) # Navigate to test directory cd scripts/testScripts