Skip to content

Commit

Permalink
Fix shell path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Jul 13, 2024
1 parent 2b9f5f1 commit 8e62662
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
docker build -t serial .
echo "Testing installation from PyPi"
docker run -t serial /bin/bash -c \
docker run -t serial bash -c \
"pip install CLUEstering; python3 -c 'import CLUEstering' || exit 1"
echo "Testing installation from git repository"
docker run -t serial /bin/bash -c \
docker run -t serial bash -c \
"git clone https://github.com/cms-patatrack/CLUEstering;
cd CLUEstering;
pip install . ;
Expand All @@ -37,11 +37,11 @@ jobs:
docker build -t noboost .
echo "Testing installation from PyPi"
docker run -t noboost /bin/bash -c \
docker run -t noboost bash -c \
"pip install CLUEstering; python3 -c 'import CLUEstering' || exit 1"
echo "Testing installation from git repository"
docker run -t noboost /bin/bash -c \
docker run -t noboost bash -c \
"git clone https://github.com/cms-patatrack/CLUEstering;
cd CLUEstering;
pip install . ;
Expand All @@ -53,11 +53,11 @@ jobs:
docker build -t tbb .
echo "Testing installation from PyPi"
docker run -t tbb /bin/bash -c \
docker run -t tbb bash -c \
"pip install CLUEstering; python3 -c 'import CLUEstering' || exit 1"
echo "Testing installation from git repository"
docker run -t tbb /bin/bash -c \
docker run -t tbb bash -c \
"git clone https://github.com/cms-patatrack/CLUEstering;
cd CLUEstering;
pip install . ;
Expand All @@ -69,11 +69,11 @@ jobs:
docker build -t nogcc .
echo "Testing installation from PyPi"
docker run -t nogcc /bin/bash -c \
docker run -t nogcc bash -c \
"pip install CLUEstering; python3 -c 'import CLUEstering' && exit 1"
echo "Testing installation from git repository"
docker run -t nogcc /bin/bash -c \
docker run -t nogcc bash -c \
"git clone https://github.com/cms-patatrack/CLUEstering;
cd CLUEstering;
pip install . ;
Expand All @@ -85,11 +85,11 @@ jobs:
docker build -t nocmake .
echo "Testing installation from PyPi"
docker run -t nocmake /bin/bash -c \
docker run -t nocmake bash -c \
"pip install CLUEstering; python3 -c 'import CLUEstering' && exit 1"
echo "Testing installation from git repository"
docker run -t nocmake /bin/bash -c \
docker run -t nocmake bash -c \
"git clone https://github.com/cms-patatrack/CLUEstering;
cd CLUEstering;
pip install . ;
Expand Down

0 comments on commit 8e62662

Please sign in to comment.