summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux-build.yml3
-rw-r--r--.github/workflows/win-build.yml6
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"
}