Skip to content

Commit

Permalink
Fixed CI windows build issue and added debug info.
Browse files Browse the repository at this point in the history
  • Loading branch information
mliberty1 committed Jun 8, 2023
1 parent 1d83b8a commit cd91064
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions joulescope.spec
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ if sys.platform.startswith('win'):
EXE_NAME = 'joulescope'
HIDDEN_IMPORTS = []
BINARIES = [ # uses winusb which comes with Windows
('C:\\Windows\\System32\\msvcp100.dll', '.'),
('C:\\Windows\\System32\\msvcr100.dll', '.'),
('C:\\Windows\\System32\\msvcp140.dll', '.'),
('C:\\Windows\\System32\\msvcp140_1.dll', '.'),
('C:\\Windows\\System32\\msvcp140_2.dll', '.'),
Expand Down Expand Up @@ -157,11 +155,12 @@ coll = COLLECT(
name='joulescope',
)


for key, value in os.environ.items():
print(f'{key} = {value}')
is_ci = os.environ.get('CI', False)
print(f'is_ci = {is_ci}')
os.makedirs('install', exist_ok=True)


if sys.platform.startswith('darwin'):
# https://blog.macsales.com/28492-create-your-own-custom-icons-in-10-7-5-or-later
# iconutil --convert icns joulescope_ui/resources/icon.iconset
Expand Down

0 comments on commit cd91064

Please sign in to comment.