diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4baee0..9564212 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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