mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
Fix workflow concurrency (#6031)
* First test of the consolidated workflows Co-authored-by: Andras Fekete <andras@wolfssl.com>
This commit is contained in:
9
.github/workflows/docker-Espressif.yml
vendored
9
.github/workflows/docker-Espressif.yml
vendored
@ -1,13 +1,6 @@
|
||||
name: Espressif examples tests
|
||||
concurrency:
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
# cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
espressif_latest:
|
||||
|
8
.github/workflows/docker-OpenWrt.yml
vendored
8
.github/workflows/docker-OpenWrt.yml
vendored
@ -1,15 +1,9 @@
|
||||
# This workflow tests out new libraries with existing OpenWrt builds to check
|
||||
# there aren't any compatibility issues. Take a look at Docker/OpenWrt/README.md
|
||||
name: OpenWrt test
|
||||
concurrency:
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
# cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
build_library:
|
||||
|
20
.github/workflows/main.yml
vendored
Normal file
20
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: wolfSSL CI tests
|
||||
concurrency:
|
||||
group: ${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
|
||||
jobs:
|
||||
call_docker-Espressif:
|
||||
uses: ./.github/workflows/docker-Espressif.yml
|
||||
call_multi-compiler:
|
||||
uses: ./.github/workflows/multi-compiler.yml
|
||||
call_docker-OpenWrt:
|
||||
uses: ./.github/workflows/docker-OpenWrt.yml
|
||||
call_os-check:
|
||||
uses: ./.github/workflows/os-check.yml
|
8
.github/workflows/multi-compiler.yml
vendored
8
.github/workflows/multi-compiler.yml
vendored
@ -1,13 +1,7 @@
|
||||
name: Multiple compilers and versions
|
||||
concurrency:
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
# cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
my_matrix:
|
||||
|
8
.github/workflows/os-check.yml
vendored
8
.github/workflows/os-check.yml
vendored
@ -1,13 +1,7 @@
|
||||
name: Ubuntu-Macos-Windows Tests
|
||||
concurrency:
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
# cancel-in-progress: true
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
make_check:
|
||||
|
Reference in New Issue
Block a user