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
4 changes: 3 additions & 1 deletion .azure-pipelines/azure-pipelines-osx.yml

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

6 changes: 3 additions & 3 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
MACOSX_DEPLOYMENT_TARGET:
- '11.0'
- '10.15'
MACOSX_SDK_VERSION:
- '11.0'
- '10.15'
c_compiler:
- clang
c_compiler_version:
- '19'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
- '11.0'
- '10.15'
channel_sources:
- conda-forge
channel_targets:
Expand Down
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
steps:

- name: Checkout code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Build on Linux
id: build-linux
Expand Down Expand Up @@ -104,7 +105,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.

3 changes: 1 addition & 2 deletions LICENSE.txt

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

8 changes: 1 addition & 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: 22.22.0
version: 22.22.2
# NODE_MODULE_VERSION set in src/node_version.h
NODE_MODULE_VERSION: 127

Expand All @@ -14,19 +14,19 @@ source:
- if: unix
then:
url: https://nodejs.org/dist/v${{ version }}/node-v${{ version }}.tar.gz
sha256: 5a4585d7f26bfb283267194b299243efea5ee6edd2fbf887825469b4ac94aece
sha256: f4b9606f33aef725a77b6292460102b48b80902571a8bb94cd769837ee0577df
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: c97fa376d2becdc8863fcd3ca2dd9a83a9f3468ee7ccf7a6d076ec66a645c77a
sha256: 7c93e9d92bf68c07182b471aa187e35ee6cd08ef0f24ab060dfff605fcc1c57c
- if: target_platform == "win-arm64"
then:
url: https://nodejs.org/dist/v${{ version }}/node-v${{ version }}-win-arm64.zip
sha256: 5b44fd410df7b4cd0a1891a05a7b606f8fb7d8786a94997b996a372e82478d7a
sha256: 380d375cf650c5a7f2ef3ce29ac6ea9a1c9d2ec8ea8e8391e1a34fd543886ab3

build:
number: 0
Expand Down
Loading