summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yaml
blob: 5d2c935fe62a184f969523f61afc1f2aeb986783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Publish Extension

on:
  push:
    branches:
      - main
      - package-python

jobs:
  pyinstaller:
    strategy:
      matrix:
        os: [macos-latest]

    runs-on: ${{ matrix.os }}

    steps:
      - name: Check-out repository
        uses: actions/checkout@v3

      - name: Set up Python
        uses: actions/setup-python@v2
        with:
          python-version: "3.8"

      - name: Install Dependencies
        run: |
          pip install -r continuedev/requirements.txt pyinstaller

      - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F

      - name: Upload Artifacts
        uses: actions/upload-artifact@v3
        with:
          name: ${{ runner.os }} Build
          path: dist/*

  # publish:
  #   runs-on: ubuntu-latest

  #   steps:
  #     - name: Checkout
  #       uses: actions/checkout@v2

  #     - name: Set up Python
  #       uses: actions/setup-python@v2
  #       with:
  #         python-version: "3.8"

  #     - name: Install Poetry
  #       run: |
  #         curl -sSL https://install.python-poetry.org | python3 -

  #     - name: Install Python dependencies
  #       run: |
  #         cd continuedev
  #         poetry install

  #     - name: Cache extension node_modules
  #       uses: actions/cache@v2
  #       with:
  #         path: extension/node_modules
  #         key: ${{ runner.os }}-node-${{ hashFiles('extension/package-lock.json') }}

  #     - name: Cache react-app node_modules
  #       uses: actions/cache@v2
  #       with:
  #         path: extension/react-app/node_modules
  #         key: ${{ runner.os }}-node-${{ hashFiles('extension/react-app/package-lock.json') }}

  #     - name: Set up Node.js
  #       uses: actions/setup-node@v2
  #       with:
  #         node-version: "14"

  #     - name: Install extension Dependencies
  #       run: |
  #         cd extension
  #         npm ci --legacy-peer-deps

  #     - name: Install react-app Dependencies
  #       run: |
  #         cd extension/react-app
  #         npm ci --legacy-peer-deps

  #     - name: Build and Publish
  #       run: |
  #         cd extension
  #         npm run full-package

  #     - name: Commit changes
  #       run: |
  #         git config --local user.email "action@github.com"
  #         git config --local user.name "GitHub Action"
  #         git commit -am "Update package.json version [skip ci]"

  #     - name: Push changes
  #       uses: ad-m/github-push-action@master
  #       with:
  #         github_token: ${{ secrets.GITHUB_TOKEN }}

  #     - name: Upload .vsix artifact
  #       uses: actions/upload-artifact@v2
  #       with:
  #         name: vsix-artifact
  #         path: extension/build/*