forked from conda-forge/fribidi-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
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 conda-forge#2 from pkgw/platforms
See if we can just add aarch64 and ppc64le
- Loading branch information
Showing
23 changed files
with
341 additions
and
211 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file was generated automatically from conda-smithy. To update this configuration, | ||
# update the conda-forge.yml and/or the recipe/meta.yaml. | ||
# -*- mode: yaml -*- | ||
|
||
jobs: | ||
- job: linux | ||
pool: | ||
vmImage: ubuntu-16.04 | ||
timeoutInMinutes: 360 | ||
strategy: | ||
maxParallel: 8 | ||
matrix: | ||
linux_: | ||
CONFIG: linux_ | ||
UPLOAD_PACKAGES: True | ||
DOCKER_IMAGE: condaforge/linux-anvil-comp7 | ||
linux_aarch64_: | ||
CONFIG: linux_aarch64_ | ||
UPLOAD_PACKAGES: True | ||
DOCKER_IMAGE: condaforge/linux-anvil-aarch64 | ||
linux_ppc64le_: | ||
CONFIG: linux_ppc64le_ | ||
UPLOAD_PACKAGES: True | ||
DOCKER_IMAGE: condaforge/linux-anvil-ppc64le | ||
steps: | ||
# configure qemu binfmt-misc running. This allows us to run docker containers | ||
# embedded qemu-static | ||
- script: | | ||
docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes | ||
ls /proc/sys/fs/binfmt_misc/ | ||
condition: not(startsWith(variables['CONFIG'], 'linux_64')) | ||
displayName: Configure binfmt_misc | ||
- script: | | ||
export CI=azure | ||
.azure-pipelines/run_docker_build.sh | ||
displayName: Run docker build | ||
env: | ||
BINSTAR_TOKEN: $(BINSTAR_TOKEN) |
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,75 @@ | ||
# This file was generated automatically from conda-smithy. To update this configuration, | ||
# update the conda-forge.yml and/or the recipe/meta.yaml. | ||
# -*- mode: yaml -*- | ||
|
||
jobs: | ||
- job: osx | ||
pool: | ||
vmImage: macOS-10.13 | ||
timeoutInMinutes: 360 | ||
strategy: | ||
maxParallel: 8 | ||
matrix: | ||
osx_: | ||
CONFIG: osx_ | ||
UPLOAD_PACKAGES: True | ||
|
||
steps: | ||
# TODO: Fast finish on azure pipelines? | ||
- script: | | ||
echo "Fast Finish" | ||
- script: | | ||
echo "Removing homebrew from Azure to avoid conflicts." | ||
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew | ||
chmod +x ~/uninstall_homebrew | ||
~/uninstall_homebrew -fq | ||
rm ~/uninstall_homebrew | ||
displayName: Remove homebrew | ||
- bash: | | ||
echo "##vso[task.prependpath]$CONDA/bin" | ||
sudo chown -R $USER $CONDA | ||
displayName: Add conda to PATH | ||
- script: | | ||
source activate base | ||
conda install -n base -c conda-forge --quiet --yes conda-forge-ci-setup=2 conda-build | ||
displayName: 'Add conda-forge-ci-setup=2' | ||
- script: | | ||
source activate base | ||
echo "Configuring conda." | ||
setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml | ||
export CI=azure | ||
source run_conda_forge_build_setup | ||
conda update --yes --quiet --override-channels -c conda-forge -c defaults --all | ||
env: { | ||
OSX_FORCE_SDK_DOWNLOAD: "1" | ||
} | ||
displayName: Configure conda and conda-build | ||
- script: | | ||
source activate base | ||
mangle_compiler ./ ./recipe ./.ci_support/${CONFIG}.yaml | ||
displayName: Mangle compiler | ||
- script: | | ||
source activate base | ||
make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml | ||
displayName: Generate build number clobber file | ||
- script: | | ||
source activate base | ||
conda build ./recipe -m ./.ci_support/${CONFIG}.yaml --clobber-file ./.ci_support/clobber_${CONFIG}.yaml | ||
displayName: Build recipe | ||
- script: | | ||
source activate base | ||
upload_package ./ ./recipe ./.ci_support/${CONFIG}.yaml | ||
displayName: Upload recipe | ||
env: | ||
BINSTAR_TOKEN: $(BINSTAR_TOKEN) | ||
condition: not(eq(variables['UPLOAD_PACKAGES'], 'False')) |
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,10 @@ | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '7' | ||
channel_sources: | ||
- conda-forge,defaults | ||
channel_targets: | ||
- conda-forge main | ||
docker_image: | ||
- condaforge/linux-anvil-comp7 |
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,16 @@ | ||
BUILD: | ||
- aarch64-conda_cos7-linux-gnu | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '7' | ||
cdt_arch: | ||
- aarch64 | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
- conda-forge,c4aarch64,defaults | ||
channel_targets: | ||
- conda-forge main | ||
docker_image: | ||
- condaforge/linux-anvil-aarch64 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '8' | ||
channel_sources: | ||
- conda-forge,defaults | ||
channel_targets: | ||
- conda-forge main | ||
docker_image: | ||
- condaforge/linux-anvil-ppc64le |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.