Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update duckdb #11

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
BUILD_CORE: ${{ matrix.build_type.BUILD_CORE }}
BUILD_SUBSTRAIT: ${{ matrix.build_type.BUILD_SUBSTRAIT }}
run: make deps.darwin.amd64
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: "Run tests"
run: go test ./...
- uses: actions/upload-artifact@v4
with:
name: darwin_amd64_${{ matrix.build_type.name }}
Expand All @@ -63,6 +68,11 @@ jobs:
BUILD_CORE: ${{ matrix.build_type.BUILD_CORE }}
BUILD_SUBSTRAIT: ${{ matrix.build_type.BUILD_SUBSTRAIT }}
run: make deps.darwin.arm64
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: "Run tests"
run: go test ./...
- uses: actions/upload-artifact@v4
with:
name: darwin_arm64_${{ matrix.build_type.name }}
Expand All @@ -85,6 +95,11 @@ jobs:
BUILD_CORE: ${{ matrix.build_type.BUILD_CORE }}
BUILD_SUBSTRAIT: ${{ matrix.build_type.BUILD_SUBSTRAIT }}
run: make deps.linux.amd64
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: "Run tests"
run: go test ./...
- uses: actions/upload-artifact@v4
with:
name: linux_amd64_${{ matrix.build_type.name }}
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test on PR
on:
pull_request:
branches:
- main

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-13]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: "Run tests"
run: go test ./...
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DUCKDB_REPO=https://github.com/duckdb/duckdb.git
DUCKDB_REF=43c9d167d0a6c22c9d0afed9fba7ae363b32f166
DUCKDB_REF=ab8c90985741ac68cd203c8396022894c1771d4b

SUBSTRAIT_REPO=https://github.com/substrait-io/duckdb-substrait-extension.git
SUBSTRAIT_BRANCH=main
Expand Down
Loading
Loading