CICD: Fix Coverity Scan Workflow.
Change the ordering of steps so that git is installed before the checkout is performed. Signed-off-by: Michael Keller <mikeller@042.ch>
This commit is contained in:
parent
be1b80ea8a
commit
22082bd60a
12
.github/workflows/coverity-scan.yml
vendored
12
.github/workflows/coverity-scan.yml
vendored
@ -11,12 +11,6 @@ jobs:
|
|||||||
image: ubuntu:22.04
|
image: ubuntu:22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout sources
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: add build dependencies
|
- name: add build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
@ -33,6 +27,12 @@ jobs:
|
|||||||
qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \
|
qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \
|
||||||
qtquickcontrols2-5-dev libbluetooth-dev libmtp-dev
|
qtquickcontrols2-5-dev libbluetooth-dev libmtp-dev
|
||||||
|
|
||||||
|
- name: checkout sources
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
- name: configure environment
|
- name: configure environment
|
||||||
run: |
|
run: |
|
||||||
git config --global --add safe.directory $GITHUB_WORKSPACE
|
git config --global --add safe.directory $GITHUB_WORKSPACE
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user