mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-09-03 20:21:29 +00:00
Update CI scripts in attempt to get CI working with the current Ubuntu container. Signed-off-by: William Douglas <william.douglas@intel.com>
14 lines
374 B
Bash
Executable File
14 lines
374 B
Bash
Executable File
#!/bin/bash
|
|
# Calls build_ci to install dependencies and build swupd.
|
|
# Install dependencies needed to run compliance check, documentation check and
|
|
# bash shell check
|
|
|
|
set -e
|
|
./scripts/github_actions/build_ci.bash
|
|
|
|
# Install dependencies from ubuntu
|
|
sudo apt-get install shellcheck
|
|
sudo apt-get install doxygen
|
|
sudo apt-get install clang-format
|
|
sudo pip install coverxygen
|