From c6d910ec21cba1bdecc18cc7b291223afc64ea8d Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Wed, 10 Mar 2021 12:39:42 +0400 Subject: [PATCH] GitHub actions: Moved macos to tier2 platform list. --- .github/workflows/cmake-tier1.yml | 28 ---------------------------- .github/workflows/cmake-tier2.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/cmake-tier1.yml b/.github/workflows/cmake-tier1.yml index 1e7d8d9..c073a71 100644 --- a/.github/workflows/cmake-tier1.yml +++ b/.github/workflows/cmake-tier1.yml @@ -89,31 +89,3 @@ jobs: # TODO Pack zip, NSIS - - macos-homebrew: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - - name: Install Dependencies - run: brew install pkg-config gtkmm3 pcre cmake - - - name: Create Build Directory - run: cmake -E make_directory ${{runner.workspace}}/build - - - name: Configure CMake - shell: bash - working-directory: ${{runner.workspace}}/build - run: > - cmake $GITHUB_WORKSPACE - -DCMAKE_BUILD_TYPE=$BUILD_TYPE - -DAPP_BUILD_EXAMPLES=ON - -DAPP_BUILD_TESTS=ON - -DAPP_COMPILER_ENABLE_WARNINGS=ON - - - name: Build - shell: bash - working-directory: ${{runner.workspace}}/build - run: cmake --build . --config $BUILD_TYPE - diff --git a/.github/workflows/cmake-tier2.yml b/.github/workflows/cmake-tier2.yml index 37e1e3d..0bcc211 100644 --- a/.github/workflows/cmake-tier2.yml +++ b/.github/workflows/cmake-tier2.yml @@ -10,6 +10,34 @@ env: jobs: + macos-homebrew: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install Dependencies + run: brew install pkg-config gtkmm3 pcre cmake + + - name: Create Build Directory + run: cmake -E make_directory ${{runner.workspace}}/build + + - name: Configure CMake + shell: bash + working-directory: ${{runner.workspace}}/build + run: > + cmake $GITHUB_WORKSPACE + -DCMAKE_BUILD_TYPE=$BUILD_TYPE + -DAPP_BUILD_EXAMPLES=ON + -DAPP_BUILD_TESTS=ON + -DAPP_COMPILER_ENABLE_WARNINGS=ON + + - name: Build + shell: bash + working-directory: ${{runner.workspace}}/build + run: cmake --build . --config $BUILD_TYPE + + freebsd: runs-on: macos-latest # env: