diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-24 12:14:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-24 12:14:37 (GMT) |
commit | 6aa906fda2243df845ad149d6af16582f766e2f4 (patch) | |
tree | 51463a3f01f18cf35703c554b8d826e5bc707991 | |
parent | 1ad524464edf03ceec9b8d0a308b1a71c2acc668 (diff) | |
download | tk-6aa906fda2243df845ad149d6af16582f766e2f4.zip tk-6aa906fda2243df845ad149d6af16582f766e2f4.tar.gz tk-6aa906fda2243df845ad149d6af16582f766e2f4.tar.bz2 |
Environment variable $TEST_INSTALL_DIR doesn't work this way, if it contains a space
-rw-r--r-- | .github/workflows/linux-build.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index e886409..7bbbef9 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -38,7 +38,6 @@ jobs: sudo apt-get install tcl8.6-dev libxss-dev mkdir "$HOME/install dir" touch tk/doc/man.macros tk/generic/tkStubInit.c - echo "TEST_INSTALL_DIR=$HOME/install dir" >> $GITHUB_ENV echo "CFGOPT=$CFGOPT --with-tcl=/usr/lib/tcl8.6" >> $GITHUB_ENV echo "CC=$COMPILER" >> $GITHUB_ENV echo "TOOL_DIR=$(cd tcl/tools;pwd)" >> $GITHUB_ENV @@ -50,7 +49,7 @@ jobs: OPTS: ${{ matrix.compiler }}-${{ matrix.symbols }}${{ matrix.disables }} - name: Configure (symbols=${{ matrix.symbols }} opts=${{ matrix.disables }}) run: | - ./configure $CFGOPT "--prefix=$TEST_INSTALL_DIR" || { + ./configure $CFGOPT "--prefix=$HOME/install dir" || { cat config.log echo "::error::Failure during Configure" exit 1 @@ -123,7 +122,6 @@ jobs: sudo apt-get install tcl8.6-dev libxss-dev xvfb mkdir "$HOME/install dir" touch tk/doc/man.macros tk/generic/tkStubInit.c - echo "TEST_INSTALL_DIR=$HOME/install dir" >> $GITHUB_ENV echo "CFGOPT=$CFGOPT --with-tcl=/usr/lib/tcl8.6" >> $GITHUB_ENV echo "CC=$COMPILER" >> $GITHUB_ENV working-directory: "." @@ -132,7 +130,7 @@ jobs: COMPILER: ${{ matrix.compiler }} - name: Configure (symbols=${{ matrix.symbols }}) run: | - ./configure $CFGOPT "--prefix=$TEST_INSTALL_DIR" || { + ./configure $CFGOPT "--prefix=$HOME/install dir" || { cat config.log echo "::error::Failure during Configure" exit 1 |