Relocate test output to bin/.

The executables couldn't be run without the libraries next to them.
This commit is contained in:
Cerapter 2021-04-26 21:12:13 +02:00
parent 204877e706
commit 8d384d7d85
4 changed files with 18 additions and 6 deletions

View File

@ -29,6 +29,12 @@ jobs:
make
mv bin/config_sample bin/config
- name: Run tests
run |
for test in bin_tests/; do
./$test
done;
- name: Upload binary
uses: actions/upload-artifact@v2
with:
@ -53,6 +59,12 @@ jobs:
windeployqt bin\akashi.exe --release --no-opengl-sw
mv bin\config_sample bin\config
- name: Run tests
run |
for test in bin_tests/; do
./$test
done;
- name: Upload zip
uses: actions/upload-artifact@v2
with:

View File

@ -26,9 +26,8 @@ RC_ICONS = resource/icon/akashi.ico
SOURCES += main.cpp
# Include the akashi library
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../lib/release/ -llib
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../lib/debug/ -llib
else:unix: LIBS += -L$$OUT_PWD/../lib/ -llib
win32: LIBS += -L$$PWD/../bin/ -llib
else:unix: LIBS += -L$$PWD/../bin/ -llib
INCLUDEPATH += $$PWD/../lib
DEPENDPATH += $$PWD/../lib

View File

@ -5,6 +5,8 @@ TEMPLATE = lib
CONFIG += shared c++11
DESTDIR = $$PWD/../bin
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0

View File

@ -5,9 +5,8 @@ CONFIG -= app_bundle
DESTDIR = $$PWD/../bin_tests
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../lib/release/ -llib
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../lib/debug/ -llib
else:unix: LIBS += -L$$OUT_PWD/../../lib/ -llib
win32: LIBS += -L$$PWD/../bin/ -llib
else:unix: LIBS += -L$$PWD/../bin/ -llib
INCLUDEPATH += $$PWD/../lib
DEPENDPATH += $$PWD/../lib