chore: test on ci

This commit is contained in:
hardfist 2024-07-24 18:34:14 +08:00
parent d35868b6ef
commit 4671201414
6 changed files with 2 additions and 22 deletions

View file

@ -118,7 +118,6 @@ jobs:
target: ${{ needs.deploy-target.outputs.value == 'automated-preview' && 'x86_64-unknown-linux-musl' }}
settings:
- host:
- 'self-hosted'
- 'macos'
- 'arm64'
@ -131,7 +130,6 @@ jobs:
strip -x packages/next-swc/native/next-swc.*.node
- host:
- 'self-hosted'
- 'macos'
- 'arm64'
@ -148,7 +146,6 @@ jobs:
strip -x packages/next-swc/native/next-swc.*.node
- host:
- 'self-hosted'
- 'windows'
- 'x64'
@ -161,7 +158,6 @@ jobs:
target: 'x86_64-pc-windows-msvc'
- host:
- 'self-hosted'
- 'windows'
- 'x64'
@ -174,7 +170,6 @@ jobs:
target: 'i686-pc-windows-msvc'
- host:
- 'self-hosted'
- 'windows'
- 'x64'
@ -187,7 +182,6 @@ jobs:
turbo run build-native-no-plugin-release -vvv --env-mode loose --remote-cache-timeout 90 --summarize -- --target aarch64-pc-windows-msvc
- host:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -214,7 +208,6 @@ jobs:
objdump -T native/next-swc.*.node | grep GLIBC_
- host:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -232,7 +225,6 @@ jobs:
strip native/next-swc.*.node
- host:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -254,7 +246,6 @@ jobs:
objdump -T native/next-swc.*.node | grep GLIBC_
- host:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -395,7 +386,6 @@ jobs:
target: [web, nodejs]
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -590,7 +580,6 @@ jobs:
releaseStats:
name: Release Stats
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'

View file

@ -58,7 +58,7 @@ on:
description: 'List of runner labels'
required: false
type: string
default: '["self-hosted", "linux", "x64", "metal"]'
default: '[ "linux", "x64", "metal"]'
env:
NAPI_CLI_VERSION: 2.14.7

View file

@ -34,7 +34,6 @@ jobs:
needs: build
timeout-minutes: 25
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'

View file

@ -54,7 +54,6 @@ jobs:
# ref: https://github.com/vercel/turbo/pull/5668
# timeout-minutes: 180
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -100,7 +99,6 @@ jobs:
name: Next.js integration test (Integration)
needs: [setup_nextjs]
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -147,7 +145,6 @@ jobs:
needs: [test-production, test-integration-production]
name: Next.js integration test production status report
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -177,7 +174,6 @@ jobs:
needs: [test-production, test-integration-production]
name: Upload test report to datadog
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'

View file

@ -54,7 +54,6 @@ jobs:
# ref: https://github.com/vercel/turbo/pull/5668
# timeout-minutes: 180
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -100,7 +99,6 @@ jobs:
name: Next.js integration test (Integration)
needs: [setup_nextjs]
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -147,7 +145,6 @@ jobs:
needs: [test-dev, test-integration-development]
name: Next.js integration test development status report
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'
@ -177,7 +174,6 @@ jobs:
needs: [test-dev, test-integration-development]
name: Upload test report to datadog
runs-on:
- 'self-hosted'
- 'linux'
- 'x64'
- 'metal'

View file

@ -3,7 +3,7 @@ import css from "./hello-world.module.css";
export default function HelloWorld() {
return (
<div className={css.hello}>
Hello World, I am being styled using CSS Modules!
Hello Rspack good, I am being styled using CSS Modules!
</div>
);
}