Skip to content

Commit

Permalink
switch to other ci tools repo for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Nov 6, 2024
1 parent eb1b1b0 commit c86aa34
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
name: Build extension binaries
uses: ./.github/workflows/_extension_distribution.yml
with:
duckdb_version: v1.1.1
ci_tools_version: main
duckdb_version: v1.1.3
ci_tools_version: minor-ci-tweaks
override_ci_tools_repository: samansmink/extension-ci-tools
extension_name: rusty_quack
extra_toolchains: rust;python3
matrix_parse_script: "./extension-ci-tools/scripts/modify_distribution_matrix.py"
Expand All @@ -37,7 +38,7 @@ jobs:
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v1.1.1
duckdb_version: v1.1.3
extension_name: rusty_quack
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
9 changes: 5 additions & 4 deletions duckdb_extension_rs.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,16 @@ EXTENSION_FILENAME=$(EXTENSION_NAME).duckdb_extension
#############################################
### Platform Detection
#############################################

# Write the platform we are building for
platform: build/platform

# Either autodetect or use the provided value
ifeq ($(DUCKDB_PLATFORM),)
PLATFORM_TARGET=platform_autodetect
else
PLATFORM_TARGET=platform_override
endif

# Write the platform we are building for
platform: build/platform

build/platform: $(PLATFORM_TARGET)

# (Don't call directly) autodetects the platform using the DuckDB installed in the venv
Expand Down

0 comments on commit c86aa34

Please sign in to comment.