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
6 changes: 0 additions & 6 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
c_compiler:
- vs2022
c_stdlib:
- vs
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- vs2022
target_platform:
- win-64
6 changes: 0 additions & 6 deletions .ci_support/win_arm64_.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
c_compiler:
- vs2022
c_stdlib:
- vs
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- vs2022
target_platform:
- win-arm64
9 changes: 5 additions & 4 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,23 @@ jobs:
timeout-minutes: 360
strategy:
fail-fast: false
max-parallel: 50
matrix:
include:
- CONFIG: linux_64_
UPLOAD_PACKAGES: True
os: ubuntu
runs_on: ['cirun-openstack-cpu-large--${{ github.run_id }}-linux_64_', 'linux', 'x64', 'self-hosted']
runs_on: ['cirun-openstack-cpu-large--${{ github.run_id }}-linux_64_']
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
- CONFIG: linux_aarch64_
UPLOAD_PACKAGES: True
os: ubuntu
runs_on: ['cirun-openstack-cpu-large--${{ github.run_id }}-linux_aarch64_', 'linux', 'x64', 'self-hosted']
runs_on: ['cirun-openstack-cpu-large--${{ github.run_id }}-linux_aarch64_']
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
- CONFIG: osx_arm64_
UPLOAD_PACKAGES: True
os: macos
runs_on: ['cirun-macos-m4-large--${{ github.run_id }}-osx_arm64_', 'macOS', 'arm64', 'self-hosted']
runs_on: ['cirun-macos-m4-large--${{ github.run_id }}-osx_arm64_']
steps:

- name: Checkout code
Expand Down Expand Up @@ -108,7 +109,7 @@ jobs:
# default value; make it explicit, as it needs to match with artefact
# generation below. Not configurable for now, can be revisited later
CONDA_BLD_DIR: C:\bld
MINIFORGE_HOME: D:\Miniforge
MINIFORGE_HOME: ${{ contains(runner.arch, 'ARM') && 'C' || 'D' }}:\Miniforge
PYTHONUNBUFFERED: 1
CONFIG: ${{ matrix.CONFIG }}
CI: github_actions
Expand Down
1 change: 1 addition & 0 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 27 additions & 6 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pixi.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions recipe/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
schema_version: 1

context:
version: "24.14.0"
version: "24.14.1"
# NODE_MODULE_VERSION set in src/node_version.h
NODE_MODULE_VERSION: 137

Expand All @@ -14,19 +14,19 @@ source:
- if: unix
then:
url: https://nodejs.org/dist/v${{ version }}/node-v${{ version }}.tar.gz
sha256: 852c73dd5b6ba15b231d036da6312dbcdabd6295adc3940586f3187b77731cf3
sha256: 8298cf1f5774093ca819f41b8dd392fd2cff058688b4d5c8805026352e2d31b3
patches:
- patches/0001-stop-removing-librt.patch
- patches/0002-include-obj-name-in-shared-intermediate.patch
- patches/0003-Forward-ceilf-floorf.patch
- if: target_platform == "win-64"
then:
url: https://nodejs.org/dist/v${{ version }}/node-v${{ version }}-win-x64.zip
sha256: 313fa40c0d7b18575821de8cb17483031fe07d95de5994f6f435f3b345f85c66
sha256: 6e50ce5498c0cebc20fd39ab3ff5df836ed2f8a31aa093cecad8497cff126d70
- if: target_platform == "win-arm64"
then:
url: https://nodejs.org/dist/v${{ version }}/node-v${{ version }}-win-arm64.zip
sha256: 88d36e8109736a2fa9bdc596f2cf507a3c52c69cdf96e54f8acd473ec14be853
sha256: a7b7c68490e4a8cde1921fe5a0cfb3001d53f9c839e416903e4f28e727b62f60

build:
number: 0
Expand Down
Loading