From 2505adfb62a0c4e7c4f7e2e3e9611bb20dd70185 Mon Sep 17 00:00:00 2001 From: femshima <49227365+femshima@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:34:23 +0900 Subject: [PATCH] fix job name --- .github/workflows/build.yml | 20 ++++++++++---------- .github/workflows/release.yml | 20 ++++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c39e543..9c82247 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64a3d30..b536c4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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