-
Notifications
You must be signed in to change notification settings - Fork 84
/
tests.sh
21 lines (16 loc) · 802 Bytes
/
tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/bash
export GENSIM_VERSION=4.0.0
DOCKER_BUILDKIT=1 docker build -t fse-$GENSIM_VERSION --build-arg gensim=$GENSIM_VERSION .
docker run --rm "fse-$GENSIM_VERSION"
export GENSIM_VERSION=4.0.1
DOCKER_BUILDKIT=1 docker build -t fse-$GENSIM_VERSION --build-arg gensim=$GENSIM_VERSION .
docker run --rm "fse-$GENSIM_VERSION"
export GENSIM_VERSION=4.1.0
DOCKER_BUILDKIT=1 docker build -t fse-$GENSIM_VERSION --build-arg gensim=$GENSIM_VERSION .
docker run --rm "fse-$GENSIM_VERSION"
export GENSIM_VERSION=4.1.1
DOCKER_BUILDKIT=1 docker build -t fse-$GENSIM_VERSION --build-arg gensim=$GENSIM_VERSION .
docker run --rm "fse-$GENSIM_VERSION"
export GENSIM_VERSION=4.1.2
DOCKER_BUILDKIT=1 docker build -t fse-$GENSIM_VERSION --build-arg gensim=$GENSIM_VERSION .
docker run --rm "fse-$GENSIM_VERSION"