chore: for scheduled tasks, only run on main repo not fork repos (#7121)
This commit is contained in:
parent
efcb396f73
commit
9b6c0d1b23
|
|
@ -31,6 +31,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
CI:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
steps:
|
||||
|
|
@ -69,6 +70,7 @@ jobs:
|
|||
run: tools/dependencies/check-LICENSE.sh
|
||||
|
||||
CI-on-JDK11:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
steps:
|
||||
|
|
@ -97,6 +99,7 @@ jobs:
|
|||
run: ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
|
||||
|
||||
CI-on-Windows:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: windows-latest
|
||||
timeout-minutes: 90
|
||||
steps:
|
||||
|
|
@ -116,6 +119,7 @@ jobs:
|
|||
|
||||
|
||||
CI-on-MacOS:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: macos-latest
|
||||
timeout-minutes: 90
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
analyze:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ env:
|
|||
LOG_DIR: /tmp/skywalking
|
||||
jobs:
|
||||
build:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
strategy:
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
Alarm:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Alarm
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
CoordinatorsStorage:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Coordinators & Storage
|
||||
timeout-minutes: 90
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -61,6 +62,7 @@ jobs:
|
|||
test_class: org.apache.skywalking.e2e.ClusterE2E
|
||||
|
||||
Cluster:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
needs: [CoordinatorsStorage]
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
Compatibility:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Compatibility
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ env:
|
|||
|
||||
jobs:
|
||||
Event:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Event
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
GOAgent:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: GO2SKY
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
als:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
strategy:
|
||||
|
|
@ -175,6 +176,7 @@ jobs:
|
|||
run: minikube delete
|
||||
|
||||
metrics-service:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
name: Istio(${{ matrix.istio_version }})+MetricsService
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
JavaVersions:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Agent Java Versions
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
@ -64,6 +65,7 @@ jobs:
|
|||
test_class: org.apache.skywalking.e2e.simple.SimpleE2E
|
||||
|
||||
Single:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
needs: [JavaVersions]
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
JavaScriptClient:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Java Script Client
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
@ -60,6 +61,7 @@ jobs:
|
|||
with:
|
||||
test_class: org.apache.skywalking.e2e.browser.BrowserE2E
|
||||
JavaScriptClientWithRealAgent:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Java Script Client With Real Agent
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
Kafka:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Kafka (${{ matrix.case.name }})
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
Log:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Log
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
NodeJSAgent:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: NodeJSAgent
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
PHPAgent:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: PHP
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
Profiling:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Profiling
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
PythonAgent:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: PythonAgent
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
SelfObservability:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: SelfObservability
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
StoragePlugins:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Storage
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
@ -60,6 +61,7 @@ jobs:
|
|||
test_class: org.apache.skywalking.e2e.storage.StorageE2E
|
||||
|
||||
Storage:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
needs: [StoragePlugins]
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
TTL:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Storage TTL
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
FeatureGroup01:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: Feature
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
@ -63,6 +64,7 @@ jobs:
|
|||
test_class: org.apache.skywalking.e2e.simple.SimpleE2E
|
||||
|
||||
FeatureGroup02:
|
||||
if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking') || (github.event_name != 'schedule')
|
||||
name: ${{ matrix.case.name }}
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 90
|
||||
|
|
|
|||
Loading…
Reference in New Issue