forked from bitcraze/crazyflie-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bitcraze#566 from bitcraze/ataffanel/remove_window…
…s_ci Remove Windows CI
- Loading branch information
Showing
1 changed file
with
0 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,46 +35,5 @@ jobs: | |
|
||
- name: CI checks | ||
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build | ||
|
||
Windows: | ||
name: Windows | ||
needs: checks | ||
|
||
runs-on: windows-2019 | ||
|
||
steps: | ||
# Checkout, fetch-depth=0 fetches the full repos (required for automatic versioning to work) | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python 3.6 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.6 | ||
architecture: 'x86' | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -e .[dev,qt5] | ||
- name: Install nsis | ||
run: choco install -y nsis.portable -version 2.50 | ||
|
||
- name: Build exe | ||
run: python setup.py install_exe -d windows_build | ||
|
||
- name: Test exe | ||
run: windows_build\cfclient.exe --check-imports | ||
|
||
- name: Build installer | ||
run: | | ||
python win32install\generate_nsis.py | ||
makensis win32install\cfclient.nsi | ||
- name: Upload Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: windows-build | ||
path: "win32install/*.exe" | ||
|