Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
- name: Install build dependencies needed for VPU plugin
run: |
sudo apt-get update
sudo apt-get -y install libusb-1.0-0-dev
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -71,10 +67,6 @@ jobs:
check-latest: true
- name: Check Dockerfiles
run: make check-dockerfiles
- name: Install build dependencies needed for VPU plugin
run: |
sudo apt-get update
sudo apt-get -y install libusb-1.0-0-dev
- run: make go-mod-tidy
- run: make BUILDTAGS=kerneldrv
- run: make test BUILDTAGS=kerneldrv
Expand Down Expand Up @@ -103,7 +95,6 @@ jobs:
- intel-qat-initcontainer
- intel-qat-plugin
- intel-qat-plugin-kerneldrv
- intel-vpu-plugin
- intel-deviceplugin-operator
- intel-sgx-admissionwebhook
- intel-sgx-plugin
Expand Down
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ TESTDATA_DIR = pkg/topology/testdata

EXTRA_BUILD_ARGS += --build-arg GOLICENSES_VERSION=$(GOLICENSES_VERSION)

pkgs = $(shell $(GO) list ./... | grep -v vendor | grep -v e2e | grep -v envtest)
cmds = $(shell ls --ignore=internal cmd)
pkgs = $(shell $(GO) list ./... | grep -v vendor | grep -v e2e | grep -v envtest | grep -v vpu_plugin)
cmds = $(shell ls --ignore=internal --ignore=vpu_plugin cmd)

all: build

Expand Down Expand Up @@ -234,7 +234,8 @@ null :=
space := $(null) #
comma := ,
images_json := $(subst $(space),$(comma),[$(addprefix ",$(addsuffix ",$(images) $(demos))]))
skip_images := "ubuntu-demo-openvino"
skip_images_source := ubuntu-demo-openvino intel-vpu-plugin
skip_images := $(subst $(space),$(comma),$(addprefix ",$(addsuffix ", $(skip_images_source))))

check-github-actions:
@python3 -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin, Loader=yaml.SafeLoader), sys.stdout)' < .github/workflows/ci.yaml | \
Expand Down