Overview
Comment: | GitHub Actions: Significantly reduce *BSD tests
These are quite slow and quite unreliable, meaning it's impossible to |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
31cd763da0c0ffae53d904e9c628e8c6 |
User & Date: | js on 2023-04-17 14:54:13 |
Other Links: | manifest | tags |
Context
2023-04-17
| ||
16:44 | Use @GOT instead of @GOTOFF for non-local symbols check-in: e26fd20d16 user: js tags: trunk | |
14:54 | GitHub Actions: Significantly reduce *BSD tests check-in: 31cd763da0 user: js tags: trunk | |
11:56 | Always make DNS names lowercase check-in: ce2b268163 user: js tags: trunk | |
Changes
Modified .github/workflows/dragonflybsd.yml from [45c9eaf2c1] to [e4f8b62803].
1 2 3 4 5 6 7 8 9 | name: dragonflybsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | name: dragonflybsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/dragonflybsd-vm@v0 with: usesh: true copyback: false prepare: | |
︙ | ︙ |
Modified .github/workflows/freebsd.yml from [db6a8add24] to [9828c9c463].
1 2 3 4 5 6 7 8 9 | name: freebsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | name: freebsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/freebsd-vm@v0 with: usesh: true copyback: false prepare: | |
︙ | ︙ |
Modified .github/workflows/netbsd-gcc.yml from [48d679c7e3] to [4694c85176].
1 2 3 4 5 6 7 8 9 | name: netbsd-gcc on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | name: netbsd-gcc on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | |
︙ | ︙ |
Modified .github/workflows/netbsd.yml from [63f7b46ea8] to [2c6f34efc4].
1 2 3 4 5 6 7 8 9 | name: netbsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | name: netbsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | |
︙ | ︙ |
Modified .github/workflows/openbsd.yml from [217841bd2b] to [7e76f12fa8].
1 2 3 4 5 6 7 8 9 | name: openbsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | name: openbsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/openbsd-vm@v0 with: usesh: true copyback: false prepare: | |
︙ | ︙ |