Skip to content

Commit 6bd5132

Browse files
authored
Merge pull request #5310 from edwintorok/master
Fix 'make install' and add a CI rule
2 parents 6d76e7d + 75b5fc0 commit 6bd5132

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ jobs:
8686
wget -O /opt/xensource/sm/XE_SR_ERRORCODES.xml https://raw.githubusercontent.com/xapi-project/sm/master/drivers/XE_SR_ERRORCODES.xml
8787
opam exec -- make sdk
8888
89+
- name: Make install smoketest
90+
run: |
91+
opam exec -- make install DESTDIR=$(mktemp -d)
92+
opam exec -- make install DESTDIR=$(mktemp -d) BUILD_PY2=NO
93+
8994
- name: Uninstall unversioned packages and remove pins
9095
# This should purge them from the cache, unversioned package have
9196
# 'master' as its version

scripts/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ endif
179179
$(IDATA) examples/python/inventory.py $(DESTDIR)$(SITE3_DIR)/
180180
$(IPROG) examples/python/echo.py $(DESTDIR)$(PLUGINDIR)/echo
181181
$(IPROG) examples/python/shell.py $(DESTDIR)$(LIBEXECDIR)/shell.py
182-
$(IPROG) examples/python/xva.py $(DESTDIR)$(OPTDIR)/bin/xva-rewrite-scsiid
183182
# poweron
184183
$(IPROG) poweron/wlan.py $(DESTDIR)$(PLUGINDIR)/wlan.py
185184
$(IPROG) poweron/wlan.py $(DESTDIR)$(PLUGINDIR)/wake-on-lan

0 commit comments

Comments
 (0)