-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from samansmink/add-custom-toolchain-script
add custom toolchain script template
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
# This is an example script that can be used to install additional toolchain dependencies. Feel free to remove this script | ||
# if no additional toolchains are required | ||
|
||
# To enable this script, set the `custom_toolchain_script` option to true when calling the reusable workflow | ||
# `.github/workflows/_extension_distribution.yml` from `https://github.com/duckdb/extension-ci-tools` | ||
|
||
# note that the $DUCKDB_PLATFORM environment variable can be used to discern between the platforms | ||
echo "This is the sample custom toolchain script running for architecture '$DUCKDB_PLATFORM' for the quack extension." | ||
|