Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ubruhin committed Mar 3, 2024
1 parent 1e9e3d6 commit 58fffe2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- {qt: "5.15", nosetests: 0}
env:
# CMAKE_GENERATOR: "MinGW Makefiles"
CC: "D:/a/funq/Qt/Tools/mingw810_32/bin/gcc.exe"
CXX: "D:/a/funq/Qt/Tools/mingw810_32/bin/g++.exe"
QMAKE_CC: "D:/a/funq/Qt/Tools/mingw810_32/bin/gcc.exe"
QMAKE_CXX: "D:/a/funq/Qt/Tools/mingw810_32/bin/g++.exe"
defaults:
run:
shell: cmd
Expand All @@ -32,10 +32,10 @@ jobs:
- name: Install server
run: cd server && python setup.py develop && cd ..
- name: Test server
run: cd server/tests && qmake && make && cd ../../
run: cd server/tests && qmake && mingw32-make && cd ../../
- name: Test functional
run: cd tests-functionnal/funq-test-app && qmake && make && cd ../..
run: cd tests-functionnal/funq-test-app && qmake && mingw32-make && cd ../..
- name: Test client
run: cd client && python setup.py test && cd ..
- name: Test server 2
run: make -C server/tests/ check
run: mingw32-make -C server/tests/ check

0 comments on commit 58fffe2

Please sign in to comment.