Sha256: 83a05cf367dac3abfc6b55aed40be1d822e254e4ab5cfb9aa42675b95356497f
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: ['2.7.8', '3.0.6', '3.1.4', '3.2.2', 'ucrt', 'mingw', 'mswin', 'head'] duckdb: ['0.9.2', '0.8.1'] steps: - uses: actions/checkout@v3 - 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-0.9.2 | .github/workflows/test_on_windows.yml |