ObjFW  macos-10.15.yml at 96c24a6b6c9cd34051cb610db3eb63df7cf578f6bf7386316a9dce0fc25d5990

File .github/workflows/macos-10.15.yml artifact 0b4e6d02a3 on branch 96c24a6b6c9cd34051cb610db3eb63df7cf578f6bf7386316a9dce0fc25d5990


name: macos-10.15
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-10.15
    strategy:
      matrix:
        configure_flags:
          - 
          - --disable-threads
          - --disable-threads --disable-sockets
          - --disable-threads --disable-files
          - --disable-threads --disable-sockets --disable-files
          - --disable-sockets
          - --disable-sockets --disable-files
          - --disable-files
          - --disable-shared
    steps:
    - name: Install dependencies
      run: brew install autoconf automake
    - uses: actions/checkout@v2
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure ${{ matrix.configure_flags }}
    - name: make
      run: make -j$(sysctl -n hw.logicalcpu)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install