We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 236bb36 commit 3124940Copy full SHA for 3124940
.github/workflows/build.yml
@@ -25,10 +25,10 @@ jobs:
25
mkdir -p tensorflow
26
cd tensorflow
27
TFLIB=libtensorflow-cpu-linux-x86_64-2.4.0.tar.gz
28
- wget https://storage.googleapis.com/tensorflow/libtensorflow/$TFLIB
+ curl -ksLO https://storage.googleapis.com/tensorflow/libtensorflow/$TFLIB
29
tar xfz $TFLIB
30
- LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
31
- LIBRARY_PATH=$PWD/lib
+ export LD_LIBRARY_PATH=$PWD/lib
+ export LIBRARY_PATH=$PWD/lib
32
cd -
33
cd src/Go
34
make
0 commit comments