File: macos.yml

package info (click to toggle)
tarantool 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 85,364 kB
  • sloc: ansic: 513,760; cpp: 69,489; sh: 25,650; python: 19,190; perl: 14,973; makefile: 4,173; yacc: 1,329; sql: 1,074; pascal: 620; ruby: 190; awk: 18; lisp: 7
file content (103 lines) | stat: -rw-r--r-- 3,728 bytes parent folder | download | duplicates (3)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: CI

on:
  # Trigger the workflow on push or pull requests, but only for the
  # master branch
  push:
    branches:
    - master
    - '*/ci'
  pull_request:
    branches:
    - master

jobs:
  autotools:
    name: macos ${{ matrix.build.name }}
    runs-on: 'macos-latest'
    strategy:
      fail-fast: false
      matrix:
        build:
        - name: normal
          install: nghttp2
        - name: debug
          install: nghttp2
          configure: --enable-debug --enable-werror --without-brotli --enable-mqtt
        - name: libssh2
          install: nghttp2 libssh2
          configure: --enable-debug --with-libssh2
        - name: c-ares
          install: nghttp2
          configure: --enable-debug --enable-ares
        - name: HTTP only
          install: nghttp2
          configure: --enable-debug --enable-werror --enable-maintainer-mode --disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp --disable-unix-sockets --disable-shared --without-brotli --without-gssapi --without-libidn2 --without-libmetalink --without-libpsl --without-librtmp --without-libssh2 --without-nghttp2 --without-ntlm-auth --without-ssl --without-zlib
        - name: SecureTransport metalink
          install: nghttp2 openssl libmetalink
          configure: --enable-debug --without-ssl --with-darwinssl --with-libmetalink
        - name: OpenSSL metalink
          install: nghttp2 openssl libmetalink
          configure: --enable-debug --with-ssl=/usr/local/opt/openssl --with-libmetalink
        - name: LibreSSL metalink
          install: nghttp2 libressl libmetalink
          configure: --enable-debug --with-ssl=/usr/local/opt/libressl --with-libmetalink
        - name: torture
          install: nghttp2 openssl
          configure: --enable-debug --disable-shared --disable-threaded-resolver --enable-alt-svc
          tflags: -n -t --shallow=25 !FTP
    steps:
    - run: echo libtool autoconf automake pkg-config ${{ matrix.build.install }} | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile
      name: 'brew bundle'

    - run: brew update && brew bundle install --no-lock --file /tmp/Brewfile
      name: 'brew install'

    - uses: actions/checkout@v2

    - run: ./buildconf && ./configure ${{ matrix.build.configure }}
      name: 'configure'

    - run: make
      name: 'make'

    - run: make test-nonflaky
      name: 'test'
      env:
        TFLAGS: "${{ matrix.build.tflags }} ~1452"

  cmake:
    name: macos cmake ${{ matrix.compiler.CC }} ${{ matrix.build.name }}
    runs-on: 'macos-latest'
    env: ${{ matrix.compiler }}
    strategy:
      fail-fast: false
      matrix:
        compiler:
        - CC: clang
          CXX: clang++
        - CC: gcc-8
          CXX: g++-8
        - CC: gcc-9
          CXX: g++-9
        build:
        - name: OpenSSL
          install: nghttp2 openssl
          generate: -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON
        - name: LibreSSL
          install: nghttp2 libressl
          generate: -DOPENSSL_ROOT_DIR=/usr/local/opt/libressl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON
    steps:
    - run: echo libtool autoconf automake pkg-config ${{ matrix.build.install }} | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile
      name: 'brew bundle'

    - run: brew update && brew bundle install --no-lock --file /tmp/Brewfile
      name: 'brew install'

    - uses: actions/checkout@v2

    - run: cmake -H. -Bbuild ${{ matrix.build.generate }}
      name: 'cmake generate'

    - run: cmake --build build
      name: 'cmake build'