Sha256: 49cb614839b6bae43085842985a57afcd539e0d12918ab05ea2ff64b99bced38
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
name: Windows on: push: branches: - main pull_request: types: - opened - synchronize - reopened jobs: test: runs-on: windows-latest strategy: matrix: ruby: ['3.1.6', '3.2.5', '3.3.5', 'ucrt', 'mingw', 'mswin', 'head'] duckdb: ['1.1.2', '1.1.1', '1.0.0'] steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: download duckdb binary for windows 64bit env: DUCKDB_VERSION: ${{ matrix.duckdb }} run: | curl -OL https://github.com/duckdb/duckdb/releases/download/v${env:DUCKDB_VERSION}/libduckdb-windows-amd64.zip - name: extract zip file run: | unzip libduckdb-windows-amd64.zip - name: setup duckdb.dll run: | cp duckdb.dll C:/Windows/System32/ - name: Build with Rake with Ruby ${{ matrix.ruby }} run: | bundle install bundle exec rake build -- --with-duckdb-include=../../../.. --with-duckdb-lib=../../../.. - name: rake test run: | rake test post-test: name: All tests passed on Windows runs-on: windows-latest needs: test steps: - run: echo ok
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
duckdb-1.1.2.1 | .github/workflows/test_on_windows.yml |
duckdb-1.1.2.0 | .github/workflows/test_on_windows.yml |