From e7e318e64ede302cfae8765ab3ea867f2f1397a7 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Fri, 2 Sep 2022 13:43:08 +0100 Subject: [PATCH] Disable GTK macOS builds (#512) Errors started cropping up during CI runs on https://github.com/TokamakUI/Tokamak/pull/511. I think it's better to disable this job until we find a good way to fix it. It wasn't a job required for merging PRs anyway, as GTK renderer is currently experimental. --- .github/workflows/ci.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58d48af1..df42210e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,20 +76,21 @@ jobs: name: Failed snapshots path: '*Tests' - gtk_macos_build: - runs-on: macos-12 - - steps: - - uses: actions/checkout@v2 - - name: Build the GTK renderer on macOS - shell: bash - run: | - set -ex - sudo xcode-select --switch /Applications/Xcode_13.4.1.app/Contents/Developer/ - - brew install gtk+3 - - make build +# FIXME: disabled due to build errors, to be investigated +# gtk_macos_build: +# runs-on: macos-12 +# +# steps: +# - uses: actions/checkout@v2 +# - name: Build the GTK renderer on macOS +# shell: bash +# run: | +# set -ex +# sudo xcode-select --switch /Applications/Xcode_13.4.1.app/Contents/Developer/ +# +# brew install gtk+3 +# +# make build gtk_ubuntu_18_04_build: runs-on: ubuntu-latest