Skip to content

Commit

Permalink
Merge pull request #10 from regro-cf-autotick-bot/bot-pr_arch_heaad5a
Browse files Browse the repository at this point in the history
Arch Migrator
  • Loading branch information
traversaro authored Feb 6, 2021
2 parents c7ea857 + 95a1297 commit bc87c7e
Show file tree
Hide file tree
Showing 12 changed files with 159 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
c_compiler:
- gcc
c_compiler_version:
- '7'
- '9'
cdt_name:
- cos6
channel_sources:
Expand All @@ -11,11 +11,13 @@ channel_targets:
cxx_compiler:
- gxx
cxx_compiler_version:
- '7'
- '9'
docker_image:
- condaforge/linux-anvil-comp7
- quay.io/condaforge/linux-anvil-comp7
target_platform:
- linux-64
zip_keys:
- - c_compiler_version
- cxx_compiler_version
- - cdt_name
- docker_image
25 changes: 25 additions & 0 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
BUILD:
- aarch64-conda_cos7-linux-gnu
c_compiler:
- gcc
c_compiler_version:
- '9'
cdt_arch:
- aarch64
cdt_name:
- cos7
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- gxx
cxx_compiler_version:
- '9'
docker_image:
- quay.io/condaforge/linux-anvil-aarch64
target_platform:
- linux-aarch64
zip_keys:
- - c_compiler_version
- cxx_compiler_version
21 changes: 21 additions & 0 deletions .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
c_compiler:
- gcc
c_compiler_version:
- '9'
cdt_name:
- cos7
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
cxx_compiler:
- gxx
cxx_compiler_version:
- '9'
docker_image:
- quay.io/condaforge/linux-anvil-ppc64le
target_platform:
- linux-ppc64le
zip_keys:
- - c_compiler_version
- cxx_compiler_version
4 changes: 2 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ MACOSX_SDK_VERSION:
c_compiler:
- clang
c_compiler_version:
- '10'
- '11'
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '10'
- '11'
macos_machine:
- x86_64-apple-darwin13.4.0
target_platform:
Expand Down
31 changes: 31 additions & 0 deletions .drone.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 29 additions & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
conda_forge_output_validation: true
provider: {linux_aarch64: default, linux_ppc64le: default}
16 changes: 13 additions & 3 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,23 @@
mkdir build
cd build

if [ ${target_platform} == "linux-ppc64le" ]; then
# Disable tests
IGN_TEST_CMD=-DBUILD_TESTING:BOOL=OFF
NUM_PARALLEL=-j1
else
IGN_TEST_CMD=
NUM_PARALLEL=
fi

cmake .. \
-G "Ninja" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_PREFIX_PATH=$PREFIX -DCMAKE_INSTALL_PREFIX=$PREFIX \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP=True \
-DCMAKE_CXX_STANDARD=17
-DCMAKE_CXX_STANDARD=17 \
${IGN_TEST_CMD}

cmake --build . --config Release
cmake --build . --config Release --target install
cmake --build . --config Release ${NUM_PARALLEL}
cmake --build . --config Release --target install ${NUM_PARALLEL}
8 changes: 3 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ source:
sha256: b8e5460d2808e20237b2ee0a6a6b7613b56412f5f6e2a5e153e48e8faae8ab77

build:
number: 2
skip: true # [win and vc<14]
number: 3
run_exports:
- {{ pin_subpackage(name, max_pin='x') }}

requirements:
build:
- {{ compiler('cxx') }} # [not win]
- {{ compiler('c') }} # [not win]
- vs2017_win-64 # [win64]
- {{ compiler('cxx') }}
- {{ compiler('c') }}
- cmake
- ninja
- pkg-config
Expand Down

0 comments on commit bc87c7e

Please sign in to comment.