mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
76a9b0e02a
Migrate each workflow to use reusable workflow from dedicated repo to
skip pushing CI related commits to openwrt and better track versioning
of CI workflow.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit 38cc09165f
)
20 lines
421 B
YAML
20 lines
421 B
YAML
name: Coverity scan build
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 2 * * 6'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
jobs:
|
|
coverity_build:
|
|
name: Coverity x86/64 build
|
|
secrets:
|
|
coverity_api_token: ${{ secrets.COVERITY_API_TOKEN }}
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
actions: write
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/coverity.yml@main
|