-
-
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 1 commit
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#!/usr/bin/env bash | ||
jmreicha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# Because this build is already running in a container we don't do the docker | ||
# run. Likewise, the directories aren't volume mounted so we use the Drone values | ||
# instead. Also note that environment variables are set in the .drone.yml file | ||
# and passed into this script since docker run isn't used. | ||
|
||
set -xeuo pipefail | ||
|
||
# Activate the conda environment first | ||
. /opt/conda/bin/activate | ||
|
||
FEEDSTOCK_ROOT="${CI_WORKSPACE}" | ||
RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe" | ||
ARTIFACTS="${FEEDSTOCK_ROOT}/build_artifacts" | ||
|
||
if [ -z "$CONFIG" ]; then | ||
set +x | ||
FILES=`ls .ci_support/linux_*` | ||
CONFIGS="" | ||
for file in $FILES; do | ||
CONFIGS="${CONFIGS}'${file:12:-5}' or "; | ||
done | ||
echo "Need to set CONFIG env variable. Value can be one of ${CONFIGS:0:-4}" | ||
exit 1 | ||
fi | ||
|
||
mkdir -p "$ARTIFACTS" | ||
DONE_CANARY="$ARTIFACTS/conda-forge-build-done-${CONFIG}" | ||
rm -f "$DONE_CANARY" | ||
|
||
# Conda build | ||
|
||
#export PYTHONUNBUFFERED=1 | ||
#export FEEDSTOCK_ROOT=/home/conda/feedstock_root | ||
#export RECIPE_ROOT=/home/conda/recipe_root | ||
export CI_SUPPORT="${FEEDSTOCK_ROOT}/.ci_support" | ||
export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" | ||
|
||
cat >~/.condarc <<CONDARC | ||
|
||
conda-build: | ||
root-dir: /home/conda/feedstock_root/build_artifacts | ||
|
||
CONDARC | ||
|
||
conda install --yes --quiet conda-forge-ci-setup=2 conda-build -c conda-forge | ||
|
||
# set up the condarc | ||
setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" | ||
|
||
{% if build_setup -%} | ||
{{ build_setup }}{% endif -%} | ||
{% if yum_build_setup is defined -%} | ||
{{ yum_build_setup }}{% endif -%} | ||
|
||
# make the build number clobber | ||
make_build_number "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" | ||
|
||
conda build "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ | ||
--clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" | ||
|
||
if [[ "${UPLOAD_PACKAGES}" != "False" ]]; then | ||
upload_package "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" | ||
fi | ||
|
||
touch "${ARTIFACTS}/conda-forge-build-done-${CONFIG}" | ||
# verify that the end of the script was reached | ||
test -f "$DONE_CANARY" | ||
jmreicha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
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,27 @@ | ||
{% if configs[0] -%} | ||
{%- for config, platform, upload in configs | sort -%} | ||
jmreicha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
--- | ||
kind: pipeline | ||
name: {{ config }} | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
steps: | ||
- name: Install and build | ||
image: {{ docker.image }} | ||
environment: | ||
CONFIG: {{ config }} | ||
UPLOAD_PACKAGES: {{ upload }} | ||
PLATFORM: {{ platform }} | ||
DOCKER_IMAGE: {{ docker.image }} | ||
isuruf marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#BINSTAR_TOKEN: "" | ||
commands: | ||
{%- if 'linux' in platform %} | ||
- ./.drone/build_and_run.sh | ||
- echo "Done building" | ||
{%- endif %} | ||
{% endfor %} | ||
{%- endif %} | ||
|
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?