Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: cd NanoCORE && mv MakefileCI Makefile && make testpy3 -j8
- run: cd NanoCORE && make testpy3 -j8
5 changes: 4 additions & 1 deletion NanoCORE/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
include Makefile.arch

SOURCES=$(wildcard *.cc) $(wildcard Tools/*.cc) $(wildcard Tools/btagsf/*.cc) $(wildcard Tools/jetcorr/PhysicsTools/NanoAODTools/src/*.cc)
SOURCES=$(wildcard *.cc) $(wildcard Tools/*.cc) $(wildcard Tools/btagsf/*.cc)
ifdef CMSSW_BASE
SOURCES+=$(wildcard Tools/jetcorr/PhysicsTools/NanoAODTools/src/*.cc)
endif
OBJECTS=$(SOURCES:.cc=.o)
LIB=NANO_CORE.so

Expand Down
Loading