From 36c3bb37c9bff9e4b0d189fa2a80c99556ba1c07 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 22 Jun 2022 10:12:23 +0000 Subject: Configure GitHub Actions macOS CI. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1902164 13f79535-47bb-0310-9956-ffa450edef68 --- .github/workflows/macos.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 000000000..8a370c4c7 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,32 @@ +name: macOS + +on: + push: + branches: [ "trunk", "1.8.x" ] + pull_request: + branches: [ "trunk" ] + +env: + MARGS: "-j2" + +jobs: + + build: + strategy: + matrix: + os: [ "macos-latest" ] + + runs-on: ${{ matrix.os }} + env: + NOTEST_CFLAGS: ${{ matrix.notest-cflags }} + name: ${{ matrix.name }} + steps: + - uses: actions/checkout@v3 + - name: buildconf + run: ./buildconf + - name: configure + run: ./configure + - name: make + run: make $MARGS + - name: make check + run: make check -- cgit v1.2.1