Skip to content

Commit

Permalink
Turn off Windows build, tune the Linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-alexandrov committed Sep 30, 2023
1 parent 39ac1f2 commit 9525287
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/windows_conda_build.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: WindowsCondaBuild

# Run this manually till it is figured out why it fails on push.
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]

# The windows build complains about the default PATH being too long. Trying to set
# the path here, but whatever is being tried it fails. TBD.
Expand Down
6 changes: 5 additions & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash

qmake polyview.pro
qmake \
QMAKE_CC=$CC_FOR_BUILD \
QMAKE_CXX=$CXX_FOR_BUILD \
QMAKE_LINK=$CXX_FOR_BUILD \
polyview.pro
make -j${CPU_COUNT}
make install INSTALL_ROOT=$PREFIX

0 comments on commit 9525287

Please sign in to comment.