-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
Initial Drone support #1069
Merged
Merged
Initial Drone support #1069
Changes from 9 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
46d4fce
Initial Drone support
jmreicha 70114d5
Combine build steps, add news, get native build working
jmreicha 35ad63a
Unneeded import
jmreicha a11834a
Clean up build steps
jmreicha d92859d
Fix sh syntax
jmreicha ee13bcd
Unneeded env varible
jmreicha 37d59b9
export CI variable
isuruf ac2ffa5
Merge branch 'master' into drone
jmreicha 7f5a8d8
Use docker_image in Drone config
jmreicha 4da11e7
Remove unneeded config
jmreicha 4c4810d
Use anchors for build steps
jmreicha f13ca91
Add build_steps script back
jmreicha d703dd1
Chown RECIPE_ROOT before build
jmreicha d221697
Update drone.rst
isuruf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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,30 @@ | ||
{% if configs[0] -%} | ||
{%- for config_name, platform, upload, config in configs | sort -%} | ||
--- | ||
kind: pipeline | ||
name: {{ config_name }} | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
steps: | ||
- name: Install and build | ||
image: {{ config["docker_image"][-1] }} | ||
environment: | ||
CONFIG: {{ config_name }} | ||
UPLOAD_PACKAGES: {{ upload }} | ||
PLATFORM: {{ platform }} | ||
#BINSTAR_TOKEN: "" | ||
commands: | ||
{%- if 'linux' in platform %} | ||
- export FEEDSTOCK_ROOT="$CI_WORKSPACE" | ||
- export RECIPE_ROOT="$FEEDSTOCK_ROOT/recipe" | ||
- export CI=drone | ||
- . /opt/conda/bin/activate | ||
jmreicha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- ./.drone/build_steps.sh | ||
- echo "Done building" | ||
{%- endif %} | ||
{% endfor %} | ||
{%- endif %} | ||
|
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,26 @@ | ||
**Added:** | ||
|
||
* Added native aarch64 support for builds using Drone.io. This can be enabled by | ||
either using `provider: {linux_aarch64: drone}` or `provider: {linux_aarch64: | ||
native}` in the conda-forge.yml. | ||
|
||
**Changed:** | ||
|
||
* <news item> | ||
|
||
**Deprecated:** | ||
|
||
* <news item> | ||
|
||
**Removed:** | ||
|
||
* <news item> | ||
|
||
**Fixed:** | ||
|
||
* <news item> | ||
|
||
**Security:** | ||
|
||
* <news item> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use
_get_build_setup_line
here?