瀏覽代碼

Remove debugger specific GH workflows

Jeremy Tuloup 4 年之前
父節點
當前提交
1c42c0901f
共有 2 個文件被更改,包括 0 次插入84 次删除
  1. 0 34
      packages/debugger/.github/workflows/lint.yml
  2. 0 50
      packages/debugger/.github/workflows/tests.yml

+ 0 - 34
packages/debugger/.github/workflows/lint.yml

@@ -1,34 +0,0 @@
-name: Lint
-
-on:
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
-
-jobs:
-  lint_ts:
-    runs-on: ubuntu-latest
-
-    steps:
-    - name: Checkout
-      uses: actions/checkout@v2
-
-    - name: Install node
-      uses: actions/setup-node@v1
-      with:
-       node-version: '10.x'
-
-    - name: Install Python
-      uses: actions/setup-python@v1
-      with:
-        python-version: '3.8'
-        architecture: 'x64'
-
-    - name: Install JupyterLab
-      run: python -m pip install jupyterlab
-
-    - name: Lint TypeScript
-      run: |
-        jlpm
-        jlpm run lint:check

+ 0 - 50
packages/debugger/.github/workflows/tests.yml

@@ -1,50 +0,0 @@
-name: Tests
-
-on:
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-
-    steps:
-    - uses: actions/checkout@v2
-
-    - name: Add conda to $PATH
-      run: echo ::add-path::$CONDA/condabin
-
-    - name: Update conda
-      run: conda update -y -n base conda setuptools
-
-    - name: Init conda
-      run: |
-        conda init bash
-        conda info -a
-    - name: Create the conda environment
-      run: conda create -n jupyterlab-debugger --yes --quiet -c conda-forge nodejs jupyterlab=2 xeus-python=0.8.0 ptvsd python=$PYTHON_VERSION
-      env:
-        PYTHON_VERSION: '3.8'
-
-    - name: Build and install the extension
-      run: |
-        source "$CONDA/etc/profile.d/conda.sh"
-        conda activate jupyterlab-debugger
-        jlpm && jlpm run build
-        jupyter labextension link .
-
-    - name: Browser check
-      run: |
-        source "$CONDA/etc/profile.d/conda.sh"
-        conda activate jupyterlab-debugger
-        python -m jupyterlab.browser_check
-
-    - name: Run the tests
-      run: |
-        source "$CONDA/etc/profile.d/conda.sh"
-        conda activate jupyterlab-debugger
-        export XEUS_LOG=1
-        jlpm run build:test
-        jlpm run test