Skip to content
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

Arch Migrator #161

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
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'
icu:
- '67'
macos_machine:
Expand Down
8 changes: 2 additions & 6 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
appveyor:
image: Visual Studio 2017
provider:
linux_aarch64: default
linux_ppc64le: default
win: default
appveyor: {image: Visual Studio 2017}
conda_forge_output_validation: true
provider: {linux_aarch64: default, linux_ppc64le: default, win: default}
2 changes: 2 additions & 0 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ if [ "$(uname -m)" = "ppc64le" ]; then
echo "Using $(grep -c ^processor /proc/cpuinfo) CPUs"
CPU_COUNT=$(grep -c ^processor /proc/cpuinfo)
CPU_COUNT=$((CPU_COUNT / 4))
# hardcode to ensure it works
CPU_COUNT=3
fi
make -j${CPU_COUNT}
make install > /dev/null
Expand Down