diff --git a/.github/workflows/CI-unix.yml b/.github/workflows/CI-unix.yml index 858235e7..c912a6fa 100644 --- a/.github/workflows/CI-unix.yml +++ b/.github/workflows/CI-unix.yml @@ -146,36 +146,3 @@ jobs: - name: Test run: | ${{ matrix.config.qemu }} build/uv_run_tests_a - - build-bsd: - timeout-minutes: 30 - runs-on: ${{ matrix.config.runner }} - name: build-${{ matrix.config.os }}-${{ matrix.config.version }} - - strategy: - fail-fast: false - matrix: - config: - # The OS versions supported are specific to the version of the action - # https://github.com/cross-platform-actions/action/blob/master/changelog.md - - { os: freebsd, version: '13.1', runner: 'ubuntu-latest', install: 'pkg install -y' } - - { os: openbsd, version: '7.2', runner: 'macos-11', install: 'pkg_add -I' } - - steps: - - uses: actions/checkout@v2 - - - uses: cross-platform-actions/action@v0.9.0 - with: - operating_system: ${{ matrix.config.os }} - version: ${{ matrix.config.version }} - run: | - sudo ${{ matrix.config.install }} cmake ninja - sudo hostname -s ci-host - mkdir build - cd build - cmake .. -DBUILD_TESTING=ON -G Ninja - cmake --build . - ls -lh - ./uv_run_tests platform_output - ./uv_run_tests_a platform_output - ctest -V