Skip to content

Commit

Permalink
Run CI on v3 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Feb 3, 2025
1 parent b5d8517 commit 534fc73
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
#
name: CodeQL

on: [pull_request, workflow_dispatch]
on:
push:
branches: [ v3 ]
pull_request:
workflow_dispatch:

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag when a
Expand All @@ -32,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['c-cpp', 'javascript-typescript', 'python']
language: [ 'c-cpp', 'javascript-typescript', 'python' ]
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both.
# Use only 'javascript-typescript' to analyze code written in JavaScript,
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mediasoup-node.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: mediasoup-node

on: [pull_request, workflow_dispatch]
on:
push:
branches: [ v3 ]
pull_request:
workflow_dispatch:

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag when a
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mediasoup-rust.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: mediasoup-rust

on: [pull_request, workflow_dispatch]
on:
push:
branches: [ v3 ]
pull_request:
workflow_dispatch:

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag when a
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mediasoup-worker-fuzzer.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: mediasoup-worker-fuzzer

on: [pull_request, workflow_dispatch]
on:
push:
branches: [ v3 ]
pull_request:
workflow_dispatch:

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag when a
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mediasoup-worker-prebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: mediasoup-worker-prebuild
# Only trigger on GitHub releases.
on:
release:
types: [published]
types: [ published ]

jobs:
ci:
Expand All @@ -19,7 +19,7 @@ jobs:
cc: gcc
cxx: g++
# Worker prebuild for Linux with kernel version 6 Ubuntu (22.04).
# Let's not use Ubutu 24.04 to avoid same potential problem as described
# Let's not use Ubuntu 24.04 to avoid same potential problem as described
# above.
- os: ubuntu-22.04
cc: gcc
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mediasoup-worker.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: mediasoup-worker

on: [pull_request, workflow_dispatch]
on:
push:
branches: [ v3 ]
pull_request:
workflow_dispatch:

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag when a
Expand Down

0 comments on commit 534fc73

Please sign in to comment.