diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-26 09:40:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-26 09:40:08 (GMT) |
commit | d058596332cfee2f8cdf4cc7c94c7e58275060ac (patch) | |
tree | f35fdc1789eecbfb8bb3dcb1a9332c45869c255d /.github | |
parent | bad9520f9929fb5a81be88852fc7f6b171a57bec (diff) | |
parent | 406ecbaca2f8679799702c6e40fadba9d8bfd914 (diff) | |
download | tk-d058596332cfee2f8cdf4cc7c94c7e58275060ac.zip tk-d058596332cfee2f8cdf4cc7c94c7e58275060ac.tar.gz tk-d058596332cfee2f8cdf4cc7c94c7e58275060ac.tar.bz2 |
Fix main-3.1 in Mac environment. job label changes. Don't run testcases in Xcode environment, as they hang
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 16 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 9 |
2 files changed, 7 insertions, 18 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index ebd6342..874d529 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -3,7 +3,7 @@ on: [push] env: ERROR_ON_FAILURES: 1 jobs: - with-Xcode: + xcode: runs-on: macos-11.0 defaults: run: @@ -37,19 +37,7 @@ jobs: echo "::error::Failure during Build" exit 1 } - - name: Run Tests - run: | - make test styles=develop | tee out-tests.txt || { - echo "::error::Failure during Test" - exit 1 - } - cat out-tests.txt | grep -q "Failed[[:space:]][[:space:]]*[1-9]" && { - echo "::error::Failure during Test" - exit 1 - } - env: - MAC_CI: 1 - Unix-like: + clang: runs-on: macos-11.0 strategy: matrix: diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 87f824f..4784933 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -3,7 +3,7 @@ on: [push] env: ERROR_ON_FAILURES: 1 jobs: - MSVC: + msvc: runs-on: windows-2019 defaults: run: @@ -22,9 +22,10 @@ jobs: ref: core-8-6-branch path: tcl - name: Make Install Location - working-directory: . - shell: bash + working-directory: tcl run: | + echo "TCLDIR=`pwd`" >> $GITHUB_ENV + cd .. mkdir install cd install echo "INSTALLDIR=`pwd`" >> $GITHUB_ENV @@ -78,7 +79,7 @@ jobs: if ($lastexitcode -ne 0) { throw "nmake exit code: $lastexitcode" } - MSYS-gcc: + gcc: runs-on: windows-2019 defaults: run: |