ci: temporarily disable heavy workflows
This commit is contained in:
parent
22b4f4d256
commit
f1aaa25aad
|
@ -1,6 +1,6 @@
|
|||
name: Check Apps Version
|
||||
|
||||
on: [pull_request]
|
||||
# on: [pull_request]
|
||||
|
||||
jobs:
|
||||
check_apps_version:
|
||||
|
|
|
@ -4,22 +4,22 @@ concurrency:
|
|||
group: docker-build-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
- docker-latest-*
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
branch_or_tag:
|
||||
required: false
|
||||
profile:
|
||||
required: false
|
||||
default: 'emqx'
|
||||
is_latest:
|
||||
required: false
|
||||
default: false
|
||||
# on:
|
||||
# push:
|
||||
# tags:
|
||||
# - v*
|
||||
# - e*
|
||||
# - docker-latest-*
|
||||
# workflow_dispatch:
|
||||
# inputs:
|
||||
# branch_or_tag:
|
||||
# required: false
|
||||
# profile:
|
||||
# required: false
|
||||
# default: 'emqx'
|
||||
# is_latest:
|
||||
# required: false
|
||||
# default: false
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
|
|
|
@ -4,19 +4,19 @@ concurrency:
|
|||
group: build-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'ci/**'
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
branch_or_tag:
|
||||
required: false
|
||||
profile:
|
||||
required: false
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - 'ci/**'
|
||||
# tags:
|
||||
# - v*
|
||||
# - e*
|
||||
# workflow_dispatch:
|
||||
# inputs:
|
||||
# branch_or_tag:
|
||||
# required: false
|
||||
# profile:
|
||||
# required: false
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
|
|
|
@ -4,23 +4,23 @@ concurrency:
|
|||
group: slim-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- release-51
|
||||
pull_request:
|
||||
# GitHub pull_request action is by default triggered when
|
||||
# opened reopened or synchronize,
|
||||
# we add labeled and unlabeled to the list because
|
||||
# the mac job dpends on the PR having a 'Mac' label
|
||||
types:
|
||||
- labeled
|
||||
- unlabeled
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
workflow_dispatch:
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
# - release-51
|
||||
# pull_request:
|
||||
# # GitHub pull_request action is by default triggered when
|
||||
# # opened reopened or synchronize,
|
||||
# # we add labeled and unlabeled to the list because
|
||||
# # the mac job dpends on the PR having a 'Mac' label
|
||||
# types:
|
||||
# - labeled
|
||||
# - unlabeled
|
||||
# - opened
|
||||
# - reopened
|
||||
# - synchronize
|
||||
# workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
|
|
|
@ -5,9 +5,9 @@ concurrency:
|
|||
group: mix-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
# on:
|
||||
# pull_request:
|
||||
# workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
elixir_release_build:
|
||||
|
|
|
@ -4,15 +4,15 @@ concurrency:
|
|||
group: conftest-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- 'ci/**'
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
pull_request:
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
# - 'ci/**'
|
||||
# tags:
|
||||
# - v*
|
||||
# - e*
|
||||
# pull_request:
|
||||
|
||||
env:
|
||||
IS_CI: "yes"
|
||||
|
|
|
@ -4,8 +4,8 @@ name: Check emqx app standalone
|
|||
## in other project, so we need to make sure apps/emqx
|
||||
## as an Erlang/Elixir app works standalone
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
# on:
|
||||
# pull_request:
|
||||
|
||||
jobs:
|
||||
run_emqx_app_tests:
|
||||
|
|
|
@ -4,14 +4,14 @@ concurrency:
|
|||
group: fvt-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- 'ci/**'
|
||||
tags:
|
||||
- v*
|
||||
pull_request:
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
# - 'ci/**'
|
||||
# tags:
|
||||
# - v*
|
||||
# pull_request:
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
name: JMeter integration tests
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v5.*"
|
||||
pull_request:
|
||||
branches:
|
||||
- "master"
|
||||
# on:
|
||||
# push:
|
||||
# tags:
|
||||
# - "v5.*"
|
||||
# pull_request:
|
||||
# branches:
|
||||
# - "master"
|
||||
|
||||
jobs:
|
||||
build_emqx_for_jmeter_tests:
|
||||
|
|
|
@ -4,15 +4,15 @@ concurrency:
|
|||
group: test-${{ github.event_name }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- 'ci/**'
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
pull_request:
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
# - 'ci/**'
|
||||
# tags:
|
||||
# - v*
|
||||
# - e*
|
||||
# pull_request:
|
||||
|
||||
env:
|
||||
IS_CI: "yes"
|
||||
|
|
Loading…
Reference in New Issue