summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorneil <github@neilpang.com>2022-08-06 13:46:36 +0800
committerNicolas Viennot <nicolas@viennot.biz>2022-08-06 21:30:02 -0400
commitfde4b58228cd8226e7128bf101e2fe569eed5882 (patch)
tree7d6ae9fe40474a820b94a7a7c9000724a39948bf
parent17d4a8a7dfa25bcf3ddb336916010f905f2f4183 (diff)
add MacOS.yml
-rw-r--r--.github/workflows/MacOS.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/MacOS.yml b/.github/workflows/MacOS.yml
new file mode 100644
index 00000000..5e118ee7
--- /dev/null
+++ b/.github/workflows/MacOS.yml
@@ -0,0 +1,37 @@
+name: MacOS
+on:
+ push:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/MacOS.yml'
+ pull_request:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/MacOS.yml'
+
+
+
+jobs:
+ NetBSD:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - run: |
+ brew install automake
+ autoupdate
+ ./autogen.sh
+ ./configure
+ make
+ make install
+
+
+
+