Skip to content

Commit

Permalink
Merge 927850c into 5b2e145
Browse files Browse the repository at this point in the history
  • Loading branch information
tswhison committed Jun 28, 2023
2 parents 5b2e145 + 927850c commit e6be80e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/ubuntu22/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python3-dev git gcc g++ make cmake doxygen pandoc uuid-dev libjson-c-dev libhwloc-dev libtbb-dev libedit-dev libudev-dev bsdmainutils devscripts debhelper dh-python
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python3-dev python3-pybind11 git gcc g++ make cmake doxygen pandoc uuid-dev libjson-c-dev libhwloc-dev libtbb-dev libedit-dev libspdlog-dev libcli11-dev libudev-dev bsdmainutils devscripts debhelper dh-python doxygen
RUN python3 -m pip install setuptools --upgrade --prefix=/usr
RUN python3 -m pip install pyyaml jsonschema pybind11
WORKDIR /root
Expand Down
3 changes: 2 additions & 1 deletion scripts/test-codingstyle-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ find_c() {
find "${OPAE_SDK_ROOT}/libraries/libboard" -iname "*.c" -or -iname "*.h"
}

declare -r CHECKPATCH_HASH='d0f90841cba1931ee8284297deda53f098de5c82'
check_c () {
pushd $(dirname $0) >/dev/null

CHECKPATCH=checkpatch.pl

if [ ! -f $CHECKPATCH ]; then
wget --no-check-certificate https://raw.githubusercontent.com/torvalds/linux/master/scripts/checkpatch.pl
wget --no-check-certificate https://raw.githubusercontent.com/torvalds/linux/${CHECKPATCH_HASH}/scripts/checkpatch.pl
if [ ! -f $CHECKPATCH ]; then
echo "Couldn't download checkpatch.pl - please put a copy into the same"
echo "directory as this script."
Expand Down

0 comments on commit e6be80e

Please sign in to comment.