Skip to content
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/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# SETUP
################################################################
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# SETUP
################################################################
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.0
- uses: prefix-dev/setup-pixi@v0.9.0
4 changes: 2 additions & 2 deletions .github/workflows/delete_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install micromamba
uses: mamba-org/setup-micromamba@v2
Expand All @@ -38,5 +38,5 @@ jobs:
python .github/workflows/delete_package.py \
--token "$PREFIX_DEV_API_KEY" \
--package "$PACKAGE_NAME" \
--channel "$CHANNEL_NAME"
--channel "$CHANNEL_NAME"

2 changes: 1 addition & 1 deletion .github/workflows/lint_recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: (github.event_name == 'schedule' && github.repository == 'emscripten-forge/recipes') || (github.event_name != 'schedule')
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: main

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/update_matplotlib_fontcache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,24 @@ jobs:

update_matplotlib_fontcache:
strategy:
fail-fast: false
matrix:
branch: [main, emscripten-4x]

if: (github.event_name == 'schedule' && github.repository == 'emscripten-forge/recipes') || (github.event_name != 'schedule')
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: main
ref: ${{ matrix.branch }}

- name: Install micromamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ci_env.yml
create-args: >-
microsoft::playwright
pyjs_code_runner

- name: Update matplotlib font cache if needed
shell: bash -l -eo pipefail {0}
Expand Down
2 changes: 0 additions & 2 deletions ci_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: ci-env
channels:
- conda-forge
dependencies:
- microsoft::playwright
- python
- ruamel.yaml
- typer
Expand All @@ -13,4 +12,3 @@ dependencies:
- requests
- pyyaml
- pydantic
- pyjs_code_runner
2 changes: 1 addition & 1 deletion emci/bot/update_matplotlib_fontcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def update_matplotlib_fontcache(recipe_dir, target_branch_name):
PREFIX_PATH,
"--platform=emscripten-wasm32",
"-c",
"https://prefix.dev/emscripten-forge-dev",
"https://prefix.dev/emscripten-forge-4x" if target_branch_name == "emscripten-4x" else "https://prefix.dev/emscripten-forge-dev",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

"-c",
"https://prefix.dev/conda-forge",
f"matplotlib={matplotlib_version}",
Expand Down