-
Notifications
You must be signed in to change notification settings - Fork 27
49 lines (43 loc) · 1.17 KB
/
macos-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: macOS Build Test
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: macos-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@master
- uses: actions/checkout@master
with:
repository: wolfssl/wolfssl
path: wolfssl_src
- name: brew
run: brew install automake libtool
- name: wolfssl autogen
working-directory: ./wolfssl_src
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl_src
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --enable-pkcs7 --prefix=$GITHUB_WORKSPACE/build-dir
- name: wolfssl make
working-directory: ./wolfssl_src
run: make
- name: wolfssl make install
working-directory: ./wolfssl_src
run: make install
- name: Check wolfSSL install dir
run: ls $GITHUB_WORKSPACE/build-dir
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --with-wolfssl=$GITHUB_WORKSPACE/build-dir
- name: make
run: make
- name: make check
run: make check
- name: display log
if: always()
run: cat test-suite.log