summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-06-22 10:12:23 +0000
committerIvan Zhakov <ivan@apache.org>2022-06-22 10:12:23 +0000
commit7c96ae8babc98a04804051d98a90046b9f688ab2 (patch)
tree4fefe547498932297f936930153cf10389a8b8f2 /.github
parent143bc5bbccb433d4d20875087e589fe6c1489126 (diff)
downloadapr-7c96ae8babc98a04804051d98a90046b9f688ab2.tar.gz
Configure GitHub Actions macOS CI.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1902164 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml32
1 files changed, 32 insertions, 0 deletions
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