diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-29 08:43:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-29 08:43:28 (GMT) |
commit | 34de5875e05c12da0b6164436bdc42c17c307c4e (patch) | |
tree | 7830db21679b45d95cc5805d237e22f5b73083fc /.github | |
parent | f33c3774e8c0d544c1c46f50630eff709b16a826 (diff) | |
parent | e62fbde58cf1c61130e3675d2f262b2939e6599a (diff) | |
download | tcl-34de5875e05c12da0b6164436bdc42c17c307c4e.zip tcl-34de5875e05c12da0b6164436bdc42c17c307c4e.tar.gz tcl-34de5875e05c12da0b6164436bdc42c17c307c4e.tar.bz2 |
Merge 8.7
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 1 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 1 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index cb93bd4..c365faa 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -12,6 +12,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" defaults: run: shell: bash diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index a57a6cf..747dbc3 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -32,6 +32,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" defaults: run: shell: bash diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 547d27e..e3c991e 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -17,7 +17,7 @@ jobs: - "CHECKS=nodep" - "OPTS=static" - "OPTS=symbols" - - "OPTS=memdbg" + - "OPTS=symbols STATS=compdbg,memdbg" # Using powershell means we need to explicitly stop on failure steps: - name: Checkout @@ -57,6 +57,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" # Using powershell means we need to explicitly stop on failure steps: - name: Install MSYS2 |