Skip to content

Commit 40289c4

Browse files
committed
Disable VPU plugin builds
Signed-off-by: Tuomas Katila <[email protected]>
1 parent 6ab2833 commit 40289c4

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

.github/workflows/ci.yaml

-9
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ jobs:
5050
with:
5151
go-version-file: go.mod
5252
check-latest: true
53-
- name: Install build dependencies needed for VPU plugin
54-
run: |
55-
sudo apt-get update
56-
sudo apt-get -y install libusb-1.0-0-dev
5753
- name: golangci-lint
5854
uses: golangci/golangci-lint-action@v3
5955
with:
@@ -71,10 +67,6 @@ jobs:
7167
check-latest: true
7268
- name: Check Dockerfiles
7369
run: make check-dockerfiles
74-
- name: Install build dependencies needed for VPU plugin
75-
run: |
76-
sudo apt-get update
77-
sudo apt-get -y install libusb-1.0-0-dev
7870
- run: make go-mod-tidy
7971
- run: make BUILDTAGS=kerneldrv
8072
- run: make test BUILDTAGS=kerneldrv
@@ -103,7 +95,6 @@ jobs:
10395
- intel-qat-initcontainer
10496
- intel-qat-plugin
10597
- intel-qat-plugin-kerneldrv
106-
- intel-vpu-plugin
10798
- intel-deviceplugin-operator
10899
- intel-sgx-admissionwebhook
109100
- intel-sgx-plugin

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TESTDATA_DIR = pkg/topology/testdata
3131
EXTRA_BUILD_ARGS += --build-arg GOLICENSES_VERSION=$(GOLICENSES_VERSION)
3232

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

3636
all: build
3737

0 commit comments

Comments
 (0)