Overview
Comment: | GitHub Actions: Add macos-14 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | 1.0 |
Files: | files | file ages | folders |
SHA3-256: |
4e703f8d32c992241de5301365206883 |
User & Date: | js on 2024-03-17 14:38:21 |
Other Links: | branch diff | manifest | tags |
Context
2024-03-17
| ||
17:27 | GitHub Actions: Add MinGW on Fedora check-in: aa59d36a5f user: js tags: 1.0 | |
14:38 | GitHub Actions: Add macos-14 check-in: 4e703f8d32 user: js tags: 1.0 | |
14:38 | GitHub Actions: Change macos-12 to macos-latest check-in: da98b495f8 user: js tags: 1.0 | |
14:29 | GitHub Actions: Add macos-14 check-in: b6f77c627a user: js tags: trunk | |
Changes
Added .github/workflows/macos-14.yml version [af1606c56d].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | name: macos-14 on: [push, pull_request] jobs: tests: runs-on: macos-14 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@v4 - 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 |