diff options
| -rw-r--r-- | .github/workflows/mac-build.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/win-build.yml | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 2c95399..0063b9d 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -1,8 +1,8 @@ name: macOS on: [push] jobs: - with-Xcode: - runs-on: macos-latest + xcode: + runs-on: macos-11.0 defaults: run: shell: bash @@ -20,8 +20,8 @@ jobs: env: ERROR_ON_FAILURES: 1 MAC_CI: 1 - Unix-like: - runs-on: macos-latest + clang: + runs-on: macos-11.0 strategy: matrix: symbols: @@ -44,7 +44,7 @@ jobs: working-directory: generic - name: Configure (symbols=${{ matrix.symbols }} dtrace=${{ matrix.dtrace }}) # Note that macOS is always a 64 bit platform - run: ./configure --enable-64bit ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) + run: ./configure --enable-64bit --enable-framework ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) env: CFGOPT: --enable-symbols=${{ matrix.symbols }} --enable-dtrace=${{ matrix.dtrace }} - name: Build diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index b64a95c..59f00be 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -1,7 +1,7 @@ name: Windows on: [push] jobs: - MSVC: + msvc: runs-on: windows-latest defaults: run: @@ -33,7 +33,7 @@ jobs: } env: ERROR_ON_FAILURES: 1 - MSYS-gcc: + gcc: runs-on: windows-latest defaults: run: |
