diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-29 08:42:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-29 08:42:43 (GMT) |
commit | e62fbde58cf1c61130e3675d2f262b2939e6599a (patch) | |
tree | f117f1c928e2282b6ec14af5aa1d94556ca1a72a | |
parent | 5cb710df9af162eecdda7380baae24d5afd8fa3d (diff) | |
parent | 209f05b7631920f54f0f5c780e50c4bb47e3dc28 (diff) | |
download | tcl-e62fbde58cf1c61130e3675d2f262b2939e6599a.zip tcl-e62fbde58cf1c61130e3675d2f262b2939e6599a.tar.gz tcl-e62fbde58cf1c61130e3675d2f262b2939e6599a.tar.bz2 |
Merge 8.6
-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 b410aab..1549b5f 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 a8019ee..52fa62b 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 |