Relocate test output to bin/
.
The executables couldn't be run without the libraries next to them.
This commit is contained in:
parent
204877e706
commit
8d384d7d85
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@ -28,6 +28,12 @@ jobs:
|
|||||||
qmake
|
qmake
|
||||||
make
|
make
|
||||||
mv bin/config_sample bin/config
|
mv bin/config_sample bin/config
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run |
|
||||||
|
for test in bin_tests/; do
|
||||||
|
./$test
|
||||||
|
done;
|
||||||
|
|
||||||
- name: Upload binary
|
- name: Upload binary
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
@ -52,6 +58,12 @@ jobs:
|
|||||||
nmake
|
nmake
|
||||||
windeployqt bin\akashi.exe --release --no-opengl-sw
|
windeployqt bin\akashi.exe --release --no-opengl-sw
|
||||||
mv bin\config_sample bin\config
|
mv bin\config_sample bin\config
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run |
|
||||||
|
for test in bin_tests/; do
|
||||||
|
./$test
|
||||||
|
done;
|
||||||
|
|
||||||
- name: Upload zip
|
- name: Upload zip
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
@ -26,9 +26,8 @@ RC_ICONS = resource/icon/akashi.ico
|
|||||||
SOURCES += main.cpp
|
SOURCES += main.cpp
|
||||||
|
|
||||||
# Include the akashi library
|
# Include the akashi library
|
||||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../lib/release/ -llib
|
win32: LIBS += -L$$PWD/../bin/ -llib
|
||||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../lib/debug/ -llib
|
else:unix: LIBS += -L$$PWD/../bin/ -llib
|
||||||
else:unix: LIBS += -L$$OUT_PWD/../lib/ -llib
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD/../lib
|
INCLUDEPATH += $$PWD/../lib
|
||||||
DEPENDPATH += $$PWD/../lib
|
DEPENDPATH += $$PWD/../lib
|
||||||
|
@ -5,6 +5,8 @@ TEMPLATE = lib
|
|||||||
|
|
||||||
CONFIG += shared c++11
|
CONFIG += shared c++11
|
||||||
|
|
||||||
|
DESTDIR = $$PWD/../bin
|
||||||
|
|
||||||
# You can make your code fail to compile if it uses deprecated APIs.
|
# You can make your code fail to compile if it uses deprecated APIs.
|
||||||
# In order to do so, uncomment the following line.
|
# 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
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
@ -5,9 +5,8 @@ CONFIG -= app_bundle
|
|||||||
|
|
||||||
DESTDIR = $$PWD/../bin_tests
|
DESTDIR = $$PWD/../bin_tests
|
||||||
|
|
||||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../lib/release/ -llib
|
win32: LIBS += -L$$PWD/../bin/ -llib
|
||||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../lib/debug/ -llib
|
else:unix: LIBS += -L$$PWD/../bin/ -llib
|
||||||
else:unix: LIBS += -L$$OUT_PWD/../../lib/ -llib
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD/../lib
|
INCLUDEPATH += $$PWD/../lib
|
||||||
DEPENDPATH += $$PWD/../lib
|
DEPENDPATH += $$PWD/../lib
|
||||||
|
Loading…
Reference in New Issue
Block a user