[fix] drop macOS from native collector matrix and unstick upgrade doc assertion (#4374)

This commit is contained in:
Duansg
2026-09-09 14:30:09 +08:00
committed by GitHub
parent f859f1a29e
commit 999af65ebc
2 changed files with 1 additions and 7 deletions
@@ -39,12 +39,6 @@ jobs:
- platform: linux-arm64
runner: ubuntu-24.04-arm
archive_ext: tar.gz
- platform: macos-amd64
runner: macos-13
archive_ext: tar.gz
- platform: macos-arm64
runner: macos-14
archive_ext: tar.gz
- platform: windows-amd64
runner: windows-latest
archive_ext: zip
@@ -233,7 +233,7 @@ class EntityFreeObservabilityTransitionContractTest {
String content = Files.readString(REPOSITORY_ROOT.resolve(relativePath));
assertTrue(content.contains("`POST /api/logs/otlp/v1/logs` | `POST /api/otlp/v1/logs`"), relativePath);
assertTrue(content.contains("`GET /api/logs/list` | `GET /api/observability/logs`"), relativePath);
assertTrue(content.contains("`GET /api/traces/**` | `GET /api/observability/traces/**`"), relativePath);
assertFalse(content.contains("`GET /api/traces/**`"), relativePath);
}
String logService = Files.readString(REPOSITORY_ROOT.resolve("web-app/src/app/service/log.service.ts"));