Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit 71a0010

Browse files
killianmuldoontogashidm
authored andcommitted
Add linting for GPU Scheduling to Github Action
1 parent b7a0f39 commit 71a0010

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/static-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
golangci-TAS:
3434
strategy:
3535
matrix:
36-
workingdir: [extender, telemetry-aware-scheduling]
36+
workingdir: [extender, telemetry-aware-scheduling, gpu-aware-scheduling]
3737
name: lint
3838
runs-on: ubuntu-latest
3939
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TOPTARGETS := all clean image build test
1+
TOPTARGETS := all clean image build test e2e
22

33
SUBDIRS := $(wildcard *-aware-scheduling/.)
44

gpu-aware-scheduling/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ format:
2020

2121
clean:
2222
rm -f ./bin/*
23-
23+
e2e:
2424

telemetry-aware-scheduling/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ format:
1919
clean:
2020
rm -f ./bin/$(BINARY_NAME)
2121

22+
e2e:
23+
cd ../.github/e2e; go test -v e2e_test.go
2224

0 commit comments

Comments
 (0)