Skip to content

Commit

Permalink
fix job name
Browse files Browse the repository at this point in the history
  • Loading branch information
femshima committed Dec 22, 2023
1 parent 259d039 commit 2505adf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
branches:
- '**'
jobs:
build_x86_64:
name: Build x86_64
build_x86_64_legacy_nodejs:
name: Build x86_64 (legacy Node.js)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -37,8 +37,8 @@ jobs:
- name: Package prebuild
run: npm run build

build_x86_64_node_ge_18:
name: Build x86_64 node >= 18
build_x86_64:
name: Build x86_64
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -65,7 +65,7 @@ jobs:
run: npm run build

build_musl_x86_64:
name: Build x86_64(musl)
name: Build x86_64 (musl)
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node }}-alpine
Expand All @@ -88,8 +88,8 @@ jobs:
- name: Package prebuild
run: npm run build

build_aarch64:
name: Prebuild aarch64
build_aarch64_legacy_nodejs:
name: Prebuild aarch64 (legacy Node.js)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -113,8 +113,8 @@ jobs:
sudo apt update -y && sudo apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ npx node-pre-gyp --target_arch=arm64 configure build package
build_aarch64_node_ge_18:
name: Prebuild aarch64 node >= 18
build_aarch64:
name: Prebuild aarch64
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -139,7 +139,7 @@ jobs:
CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ npx node-pre-gyp --target_arch=arm64 configure build package
build_musl_aarch64:
name: Prebuild aarch64(musl)
name: Prebuild aarch64 (musl)
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node }}-alpine
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
release:
types: [published]
jobs:
build_x86_64:
name: Prebuild x86_64
build_x86_64_legacy_nodejs:
name: Prebuild x86_64 (legacy Node.js)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -38,8 +38,8 @@ jobs:
with:
path: 'build/stage/**/*.tar.gz'

build_x86_64_node_ge_18:
name: Build x86_64 node >= 18
build_x86_64:
name: Prebuild x86_64
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
path: 'build/stage/**/*.tar.gz'

build_musl_x86_64:
name: Prebuild x86_64(musl)
name: Prebuild x86_64 (musl)
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node }}-alpine
Expand Down Expand Up @@ -103,8 +103,8 @@ jobs:
with:
path: 'build/stage/**/*.tar.gz'

build_aarch64:
name: Prebuild aarch64
build_aarch64_legacy_nodejs:
name: Prebuild aarch64 (legacy Node.js)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -135,8 +135,8 @@ jobs:
with:
path: 'build/stage/**/*.tar.gz'

build_aarch64_node_ge_18:
name: Prebuild aarch64 node >= 18
build_aarch64:
name: Prebuild aarch64
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
path: 'build/stage/**/*.tar.gz'

build_musl_aarch64:
name: Prebuild aarch64(musl)
name: Prebuild aarch64 (musl)
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node }}-alpine
Expand Down

0 comments on commit 2505adf

Please sign in to comment.