forked from Nitrokey/libnitrokey
-
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 branch '30-circleci-project-setup'
Change CI to CircleCI Add Windows build Fixes Nitrokey#30 Fixes Nitrokey#31
- Loading branch information
Showing
4 changed files
with
39 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
win: circleci/[email protected] | ||
python: circleci/[email protected] | ||
|
||
jobs: | ||
build-msi-win: | ||
executor: win/default | ||
steps: | ||
- checkout | ||
- run: pip install -r ci-requirements.txt | ||
- run: python win_setup.py bdist_msi | ||
|
||
build-linux: | ||
executor: python/default | ||
steps: | ||
- checkout | ||
- run: make init | ||
- run: make CI | ||
|
||
workflows: | ||
main: | ||
jobs: | ||
- build-msi-win | ||
- build-linux |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cx-Freeze==6.1 | ||
click>=7.0 | ||
cryptography | ||
ecdsa | ||
fido2==0.7.3 | ||
intelhex | ||
pyserial | ||
pyusb | ||
requests | ||
pygments | ||
cffi | ||
|
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ flake8 | |
flit | ||
ipython | ||
isort | ||
|