Artifact 1bf239c224b84d94411ff0e0cae19a30d024bf907fe00d6c1e09bf68ff61c65d:
- File .github/workflows/macos-11.yml — part of check-in [6f5189d4f4] at 2021-10-15 12:13:39 on branch trunk — Add GitHub Actions (user: js, size: 448) [annotate] [blame] [check-ins using]
name: macos-11 on: [push, pull_request] jobs: tests: runs-on: macos-11 steps: - name: Install dependencies run: brew install autoconf automake - uses: actions/checkout@v2 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure - name: make run: make -j$(sysctl -n hw.logicalcpu) - name: make check run: make check - name: make install run: sudo make install