Skip to content

Commit

Permalink
[ci run] mimic azure build
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Jan 8, 2024
1 parent acc46b7 commit c10b34a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/Bulk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,7 @@ jobs:
set -e
eval "$(conda shell.bash hook)"
conda activate bioconda
echo '============'
conda info --all
conda config --show-sources
python -c 'import bioconda_utils.utils as u ; import pathlib as p ; print(*(f"{f}:\n{p.Path(f).read_text()}" for f in u.load_conda_build_config().exclusive_config_files), sep="\n")'
echo '============'
bioconda-utils build recipes config.yml \
--packages piscem \
--docker \
--skiplist-leafs
--docker --mulled-test \
--packages piscem
conda clean -y --all
4 changes: 2 additions & 2 deletions recipes/piscem/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ if [ "$unamestr" == 'Darwin' ];
then

# build statically linked binary with Rust
RUSTFLAGS="-C link-args=-Wl,-undefined,dynamic_lookup" RUST_BACKTRACE=1 cargo install --verbose --root $PREFIX --path .
RUSTFLAGS="-C link-args=-Wl,-undefined,dynamic_lookup" RUST_BACKTRACE=1 cargo install -j 1 --verbose --root $PREFIX --path .

else

# build statically linked binary with Rust
RUST_BACKTRACE=1 cargo install --verbose --root $PREFIX --path .
RUST_BACKTRACE=1 cargo install -j 1 --verbose --root $PREFIX --path .

fi

0 comments on commit c10b34a

Please sign in to comment.