Sha256: eb098f89e97350d19f3669b7a18f9191182578971c22cae5eccc4fe34ae3b9c8
Contents?: true
Size: 1007 Bytes
Versions: 1
Compression:
Stored size: 1007 Bytes
Contents
name: MacOS on: push: branches: - master pull_request: types: - opened - synchronize - reopened jobs: build: runs-on: macos-latest strategy: matrix: ruby: ['2.6.9', '2.7.5', '3.0.3', '3.1.1', 'head'] duckdb: ['0.3.2', '0.3.1'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: download duckdb binary for MacOS 64bit env: DUCKDB_VERSION: ${{ matrix.duckdb }} run: | curl -OL https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-osx-amd64.zip - name: extract zip file run: | unzip libduckdb-osx-amd64.zip cp duckdb.h /usr/local/include cp libduckdb.dylib /usr/local/lib - name: Build and test with Rake with Ruby ${{ matrix.ruby }} run: | ruby -v bundle install --jobs 4 --retry 3 bundle exec rake
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
duckdb-0.3.2.0 | .github/workflows/test_on_macos.yml |