diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-08-23 09:13:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-08-23 09:13:57 (GMT) |
commit | 7c392d370236cc1fcd75e90b43ba8506fec7a7de (patch) | |
tree | 113eb32a8e2c825ee6cb15ed3482fecf591bc946 /.github | |
parent | f87aa831d271c90a541738475249e10af77537e9 (diff) | |
download | tk-7c392d370236cc1fcd75e90b43ba8506fec7a7de.zip tk-7c392d370236cc1fcd75e90b43ba8506fec7a7de.tar.gz tk-7c392d370236cc1fcd75e90b43ba8506fec7a7de.tar.bz2 |
Run GITHUB actions testcases with tcl 8.5 -> 8.6 (since ubuntu 20.04 doesn't have tcl8.5-dev package any more)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 6eb8d6a..2cd8023 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -37,10 +37,10 @@ jobs: path: tcl - name: Setup Environment (compiler=${{ matrix.compiler }}) run: | - sudo apt-get install tcl8.5-dev libxss-dev + sudo apt-get install tcl8.6-dev libxss-dev mkdir "$HOME/install" touch tk/doc/man.macros tk/generic/tkStubInit.c - echo "CFGOPT=$CFGOPT --with-tcl=/usr/lib/tcl8.5" >> $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 echo "BUILD_CONFIG_ID=$OPTS" >> $GITHUB_ENV @@ -121,10 +121,10 @@ jobs: path: tk - name: Setup Environment (compiler=${{ matrix.compiler }}) run: | - sudo apt-get install tcl8.5-dev libxss-dev xvfb + sudo apt-get install tcl8.6-dev libxss-dev xvfb mkdir "$HOME/install" touch tk/doc/man.macros tk/generic/tkStubInit.c - echo "CFGOPT=$CFGOPT --with-tcl=/usr/lib/tcl8.5" >> $GITHUB_ENV + echo "CFGOPT=$CFGOPT --with-tcl=/usr/lib/tcl8.6" >> $GITHUB_ENV echo "CC=$COMPILER" >> $GITHUB_ENV working-directory: "." env: |