-
-
Notifications
You must be signed in to change notification settings - Fork 248
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 #75 from Hackndo/3.1.2
3.1.2
- Loading branch information
Showing
47 changed files
with
563 additions
and
300 deletions.
There are no files selected for viewing
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,39 @@ | ||
name: lsassy Tests & Build | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
name: lsassy actions on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
os: [ubuntu-latest, macOS-latest, windows-latest] | ||
python-version: ['3.9'] | ||
steps: | ||
- name: Checking out | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup on ${{ matrix.os }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
|
||
- name: Building binary with pyinstaller | ||
run: | | ||
pip install pyinstaller -r requirements.txt | ||
pyinstaller ./lsassy/console.py --onefile --clean -n lsassy --additional-hooks-dir=hooks | ||
- name: Uploading lsassy binary for ${{ matrix.os }} | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: lsassy-${{ matrix.os }} | ||
path: | | ||
dist/lsassy | ||
dist/lsassy.exe |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.