Skip to content

Commit 8bc7eac

Browse files
committed
Add Big Sur workflow
1 parent d7abf56 commit 8bc7eac

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: smoke-macos-xcode11
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
env:
12+
PERL_SKIP_TTY_TEST: 1
13+
14+
jobs:
15+
perl:
16+
17+
runs-on: macos-11.0
18+
19+
steps:
20+
- uses: actions/checkout@master
21+
with:
22+
fetch-depth: 10
23+
- name: Configure
24+
run: |
25+
export SDK=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk
26+
perl Makefile.PL
27+
- name: Build
28+
run: |
29+
make
30+
- name: Run Tests
31+
run: |
32+
make test

0 commit comments

Comments
 (0)