summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-01 18:35:54 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-01 18:35:54 -0700
commite5a9725152e4eb575b0ba6c163ef59f670ada4f7 (patch)
treec29515bea4014316c224101ecaba02356788bf9a
parent5e2cf036de37e396213d32f9486c59cf9f06080b (diff)
downloadsncontinue-e5a9725152e4eb575b0ba6c163ef59f670ada4f7.tar.gz
sncontinue-e5a9725152e4eb575b0ba6c163ef59f670ada4f7.tar.bz2
sncontinue-e5a9725152e4eb575b0ba6c163ef59f670ada4f7.zip
uncomment pyinstaller
-rw-r--r--.github/workflows/main.yaml54
1 files changed, 27 insertions, 27 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 55df9c03..158b8ef2 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -7,41 +7,41 @@ on:
- package-python
jobs:
- # pyinstaller:
- # strategy:
- # matrix:
- # os: [macos-latest, ubuntu-latest, windows-latest]
+ pyinstaller:
+ strategy:
+ matrix:
+ os: [macos-latest, ubuntu-latest, windows-latest]
- # runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
- # steps:
- # - name: Check-out repository
- # uses: actions/checkout@v3
+ steps:
+ - name: Check-out repository
+ uses: actions/checkout@v3
- # - name: Set up Python
- # uses: actions/setup-python@v4
- # with:
- # python-version: "3.10"
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.10"
- # - name: Install Pyinstaller
- # run: |
- # pip install pyinstaller
+ - name: Install Pyinstaller
+ run: |
+ pip install pyinstaller
- # - name: Install Dependencies
- # run: |
- # pip install -r continuedev/requirements.txt
+ - name: Install Dependencies
+ run: |
+ pip install -r continuedev/requirements.txt
- # - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F
+ - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F
- # - name: Set permissions
- # run: |
- # chmod 777 dist/run
+ - name: Set permissions
+ run: |
+ chmod 777 dist/run
- # - name: Upload Artifacts
- # uses: actions/upload-artifact@v3
- # with:
- # name: ${{ runner.os }} Build
- # path: dist/*
+ - name: Upload Artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: ${{ runner.os }} Build
+ path: dist/*
publish:
# needs: pyinstaller