diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-15 08:35:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-15 08:35:49 (GMT) |
commit | 346721f3f06a873a372934d4764eb2533aaca105 (patch) | |
tree | 939f72c30d4926b169acd31bd7466ed49e48f57d | |
parent | b3e4fc2a04cb66d7fb0e7e2acd6c078f7489364b (diff) | |
download | tcl-346721f3f06a873a372934d4764eb2533aaca105.zip tcl-346721f3f06a873a372934d4764eb2533aaca105.tar.gz tcl-346721f3f06a873a372934d4764eb2533aaca105.tar.bz2 |
Fix minor errors
-rw-r--r-- | .github/workflows/linux-build.yml | 3 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 8bb0141..04420dd 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -14,6 +14,9 @@ jobs: run: | mkdir "${HOME}/install dir" ./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) + - name: Prepare + run: touch tclStubInit.c tclOOStubInit.c + working-directory: generic - name: Build run: | make all diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index f7d4ef1..809003b 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -17,17 +17,17 @@ jobs: run: | &nmake -f makefile.vc all if ($lastexitcode -ne 0) { - throw "nmake exit code: $lastexitcode" + throw "nmake exit code: $lastexitcode" } - name: Build Test Harness run: | &nmake -f makefile.vc tcltest if ($lastexitcode -ne 0) { - throw "nmake exit code: $lastexitcode" + throw "nmake exit code: $lastexitcode" } - name: Run Tests run: | &nmake -f makefile.vc test if ($lastexitcode -ne 0) { - throw "nmake exit code: $lastexitcode" + throw "nmake exit code: $lastexitcode" } |