There was an error while loading. Please reload this page.
1 parent 6614c88 commit 7bb8a6dCopy full SHA for 7bb8a6d
2 files changed
testing/docker-images/test-image/Dockerfile
@@ -6,7 +6,10 @@ RUN git clone https://github.com/gojek/feast \
6
&& cd feast && mvn test || true \
7
&& cd .. && rm -rf feast
8
9
-RUN apt-get install -y make
+RUN apt-get install -y make curl
10
+
11
+RUN curl -sSL -o /usr/local/bin/argo https://github.com/argoproj/argo/releases/download/v2.2.1/argo-linux-amd64 \
12
+ && chmod +x /usr/local/bin/argo
13
14
COPY run.sh /usr/local/bin/
15
testing/docker-images/test-image/run.sh
@@ -34,7 +34,7 @@ fi
34
echo "sha:"
35
git rev-parse HEAD
36
echo ""
37
-echo "running unit tests"
+echo "running tests"
38
39
40
$@
0 commit comments