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

Skip ctng-compiler-activation-feedstock because it is superseeded by gcc_activation-toolchain #119

Merged
merged 4 commits into from
Mar 28, 2024
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
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
Loading