Skip to content

Commit

Permalink
Merge pull request #119 from anaconda-distribution/fix_gcc_activation
Browse files Browse the repository at this point in the history
Skip ctng-compiler-activation-feedstock because it is superseeded by gcc_activation-toolchain
  • Loading branch information
JeanChristopheMorinPerso authored Mar 28, 2024
2 parents 31644c3 + 0c7ed05 commit b6842f2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-env/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ runs:
source $CONDA/etc/profile.d/conda.sh
conda init bash
sed -i 's/- python >=3.*$/- python ${{ inputs.python-version }}.*/' environment.yaml
conda env create -f environment.yaml --name percy --force
conda env create -f environment.yaml --name percy
conda run --name percy pip install .
26 changes: 25 additions & 1 deletion percy/render/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,31 @@ def load_local_feedstocks(
continue
if feedstock_name.startswith("ctng-compilers-"):
logging.warning(
"Skipping feedstock %s now replaced by binutils-feedstock and gcc_toolchain-toolchain",
"Skipping feedstock %s now replaced by binutils-feedstock and gcc_toolchain-feedstock",
feedstock_name,
)
continue
if feedstock_name.startswith("ctng-compiler-activation-"):
logging.warning(
"Skipping feedstock %s now replaced by gcc_activation-feedstock",
feedstock_name,
)
continue
if feedstock_name.startswith("llvm-compilers-"):
logging.warning(
"Skipping feedstock %s now replaced by llvmdev-feedstock",
feedstock_name,
)
continue
if feedstock_name.startswith("clang-compilers-"):
logging.warning(
"Skipping feedstock %s now replaced by clangdev-feedstock",
feedstock_name,
)
continue
if feedstock_name.startswith("clang-compiler-activation-"):
logging.warning(
"Skipping feedstock %s now replaced by clangdev-feedstock",
feedstock_name,
)
continue
Expand Down

0 comments on commit b6842f2

Please sign in to comment.