Skip to content

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeet-chand committed Jun 2, 2024
1 parent 0795f26 commit 3a66f91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Install dependencies
run: |
pip install Pillow requests pyinstaller
pip install Pillow requests pyinstaller pyautogui
- name: Build for Windows
run: |
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Install dependencies
run: |
pip install Pillow requests pyinstaller
pip install Pillow requests pyinstaller pyautogui
- name: Build for macOS
run: |
Expand All @@ -66,12 +66,12 @@ jobs:

- name: Install dependencies
run: |
pip install Pillow requests pyinstaller xvfbwrapper
pip install Pillow requests pyinstaller pyautogui xvfbwrapper # for headless displays including xvfbwrapper
- name: Build for Linux
run: |
pyinstaller --onefile --noconsole --icon=assets/view_earth.ico --distpath=. Heroes3MapLiker.py
- name: Run Linux Tests
run: |
xvfb-run --auto-servernum python tests.py
xvfb-run --auto-servernum python tests.py # Use xvfb to run the tests

0 comments on commit 3a66f91

Please sign in to comment.