fix(io-uring): Data inconsistency due to hanging pointer of written bytes #120
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: Spark SQL Integration Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| spark-sql-integration-test: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Remove unnecessary files | |
| run: | | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # - name: ssh to debug | |
| # uses: valeriangalliat/action-sshd-cloudflared@v4 | |
| - name: Run Spark SQL Test | |
| run: docker compose -f dev/integration/docker-compose.yml up -d riffle-test |