Deduplicate merged GPU quantile sketch entries #5571
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: FreeBSD | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'release_*' | |
| pull_request: | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| name: A job to run test in FreeBSD | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| submodules: 'true' | |
| - name: Test in FreeBSD | |
| id: test | |
| uses: vmactions/[email protected] | |
| with: | |
| usesh: true | |
| prepare: | | |
| pkg install -y cmake git ninja googletest bash | |
| run: | | |
| bash ops/pipeline/test-freebsd.sh |