Sha256: ce2dbcbe984326cf7c411207bbb3eec7f47a8f58a56a1c89d96f3191c5d717aa
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 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.5', '3.2.4', '3.3.4', 'ucrt', 'mingw', 'mswin', 'head'] duckdb: ['1.1.0', '1.0.0', '0.10.3'] 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
duckdb-1.1.0.0 | .github/workflows/test_on_windows.yml |