[BUG] Delete old deletion files if they are no longer relevant in a transaction #232
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: MinIo Tests | |
| on: [push, pull_request,repository_dispatch] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| BASE_BRANCH: ${{ github.base_ref || (endsWith(github.ref, '_feature') && 'feature' || 'main') }} | |
| jobs: | |
| rest: | |
| name: Tests using MinIo (AWS) | |
| runs-on: ubuntu-latest | |
| env: | |
| VCPKG_TARGET_TRIPLET: 'x64-linux-release' | |
| GEN: ninja | |
| VCPKG_FEATURE_FLAGS: "-binarycaching" | |
| VCPKG_TOOLCHAIN_PATH: ${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake | |
| PIP_BREAK_SYSTEM_PACKAGES: 1 | |
| BUILD_EXTENSION_TEST_DEPS: full | |
| steps: | |
| - name: Install required ubuntu packages | |
| run: | | |
| sudo apt-get update -y -qq | |
| sudo apt-get install -y -qq software-properties-common | |
| sudo add-apt-repository ppa:git-core/ppa | |
| sudo apt-get update -y -qq | |
| sudo apt-get install -y -qq build-essential cmake ninja-build ccache python3 | |
| sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| - name: Install CMake 3.x | |
| run: | | |
| sudo apt-get remove -y cmake cmake-data | |
| sudo apt-get install --allow-downgrades -y -qq 'cmake=3.*' 'cmake-data=3.*' | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: 'true' | |
| - name: Check installed versions | |
| run: | | |
| ninja --version | |
| cmake --version | |
| - name: Setup vcpkg | |
| uses: lukka/[email protected] | |
| with: | |
| vcpkgGitCommitId: ce613c41372b23b1f51333815feb3edd87ef8a8b | |
| - name: Setup Ccache | |
| uses: hendrikmuhs/ccache-action@main | |
| continue-on-error: true | |
| - name: Build extension | |
| env: | |
| GEN: ninja | |
| run: | | |
| make release | |
| - name: Test MinIO - AWS | |
| run: | | |
| ./scripts/start-docker.sh | |
| build/release/test/unittest --test-config test/configs/minio.json "test/sql/*" | |