diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-26 09:11:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-26 09:11:24 (GMT) |
commit | 406ecbaca2f8679799702c6e40fadba9d8bfd914 (patch) | |
tree | f4495ac76d97f309ef178a9af379c0c28424adda | |
parent | 434b29a6e98f9fe1000d27e554aca83533494b54 (diff) | |
download | tk-406ecbaca2f8679799702c6e40fadba9d8bfd914.zip tk-406ecbaca2f8679799702c6e40fadba9d8bfd914.tar.gz tk-406ecbaca2f8679799702c6e40fadba9d8bfd914.tar.bz2 |
Don't bother --enable-aqua builds for Tcl 8.5: Not supported any more
-rw-r--r-- | .github/workflows/mac-build.yml | 49 |
1 files changed, 1 insertions, 48 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 6921f7a..fb546a7 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -3,53 +3,7 @@ on: [push] env: ERROR_ON_FAILURES: 1 jobs: - with-Xcode: - runs-on: macos-10.15 - defaults: - run: - shell: bash - working-directory: tk/macosx - steps: - - name: Check out Tk - uses: actions/checkout@v2 - with: - path: tk - - name: Check out Tcl - uses: actions/checkout@v2 - with: - repository: tcltk/tcl - ref: core-8-5-branch - path: tcl - - name: Prepare checked out repositories - run: | - touch tk/generic/tkStubInit.c - mkdir build - echo "BUILD_DIR=`cd build && pwd`" >> $GITHUB_ENV - echo "DESTDIR=`cd build && pwd`" >> $GITHUB_ENV - working-directory: . - - name: Build Tcl - run: | - make all - working-directory: tcl/macosx - - name: Build - run: | - make all install || { - 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-10.15 strategy: matrix: @@ -57,7 +11,6 @@ jobs: - 'no' - 'mem' options: - - '--enable-aqua' - '--disable-aqua' defaults: run: |