Skip to content

Commit

Permalink
feat: create build_node_shared.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxilin authored Jan 9, 2025
1 parent e43cd9f commit b16cd3d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build_node_shared.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Node.js Shared Library

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/ten-framework/ten_building_ubuntu2204
steps:
- name: Checkout Node.js
uses: actions/checkout@v4
with:
repository: nodejs/node
ref: v22.12.0

- name: Configure and Build
run: |
./configure --shared
make -j$(nproc)

0 comments on commit b16cd3d

Please sign in to comment.