diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8764d2bbb3..cb9319f491 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,57 +11,57 @@ on: - release/* jobs: - linux: - runs-on: ubuntu-latest - env: - CHILD_CONCURRENCY: "1" - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - uses: actions/checkout@v2.2.0 - # TODO: rename azure-pipelines/linux/xvfb.init to github-actions - - run: | - sudo apt-get update - sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libkrb5-dev # {{SQL CARBON EDIT}} add kerberos dep - sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb - sudo chmod +x /etc/init.d/xvfb - sudo update-rc.d xvfb defaults - sudo service xvfb start - name: Setup Build Environment - - uses: actions/setup-node@v1 - with: - node-version: 10 - # TODO: cache node modules - # Increase timeout to get around latency issues when fetching certain packages - - run: | - yarn config set network-timeout 300000 - yarn --frozen-lockfile - name: Install Dependencies - - run: yarn electron x64 - name: Download Electron - - run: yarn gulp hygiene - name: Run Hygiene Checks - - run: yarn strict-vscode # {{SQL CARBON EDIT}} add step - name: Run Strict Compile Options - # - run: yarn monaco-compile-check {{SQL CARBON EDIT}} remove step - # name: Run Monaco Editor Checks - - run: yarn valid-layers-check - name: Run Valid Layers Checks - - run: yarn compile - name: Compile Sources - # - run: yarn download-builtin-extensions {{SQL CARBON EDIT}} remove step - # name: Download Built-in Extensions - - run: DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests" --coverage --runGlob "**/sql/**/*.test.js" - name: Run Unit Tests (Electron) - - run: DISPLAY=:10 ./scripts/test-extensions-unit.sh - name: Run Extension Unit Tests (Electron) - # {{SQL CARBON EDIT}} Add coveralls. We merge first to get around issue where parallel builds weren't being combined correctly - - run: node test/combineCoverage - name: Combine code coverage files - - name: Upload Code Coverage - uses: coverallsapp/github-action@v1.1.1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: "test/coverage/lcov.info" + # linux: + # runs-on: ubuntu-latest + # env: + # CHILD_CONCURRENCY: "1" + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # steps: + # - uses: actions/checkout@v2.2.0 + # # TODO: rename azure-pipelines/linux/xvfb.init to github-actions + # - run: | + # sudo apt-get update + # sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libkrb5-dev # {{SQL CARBON EDIT}} add kerberos dep + # sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb + # sudo chmod +x /etc/init.d/xvfb + # sudo update-rc.d xvfb defaults + # sudo service xvfb start + # name: Setup Build Environment + # - uses: actions/setup-node@v1 + # with: + # node-version: 10 + # # TODO: cache node modules + # # Increase timeout to get around latency issues when fetching certain packages + # - run: | + # yarn config set network-timeout 300000 + # yarn --frozen-lockfile + # name: Install Dependencies + # - run: yarn electron x64 + # name: Download Electron + # - run: yarn gulp hygiene + # name: Run Hygiene Checks + # - run: yarn strict-vscode # {{SQL CARBON EDIT}} add step + # name: Run Strict Compile Options + # # - run: yarn monaco-compile-check {{SQL CARBON EDIT}} remove step + # # name: Run Monaco Editor Checks + # - run: yarn valid-layers-check + # name: Run Valid Layers Checks + # - run: yarn compile + # name: Compile Sources + # # - run: yarn download-builtin-extensions {{SQL CARBON EDIT}} remove step + # # name: Download Built-in Extensions + # - run: DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests" --coverage --runGlob "**/sql/**/*.test.js" + # name: Run Unit Tests (Electron) + # - run: DISPLAY=:10 ./scripts/test-extensions-unit.sh + # name: Run Extension Unit Tests (Electron) + # # {{SQL CARBON EDIT}} Add coveralls. We merge first to get around issue where parallel builds weren't being combined correctly + # - run: node test/combineCoverage + # name: Combine code coverage files + # - name: Upload Code Coverage + # uses: coverallsapp/github-action@v1.1.1 + # with: + # github-token: ${{ secrets.GITHUB_TOKEN }} + # path-to-lcov: "test/coverage/lcov.info" # Fails with cryptic error (e.g. https://github.com/microsoft/vscode/pull/90292/checks?check_run_id=433681926#step:13:9) # - run: DISPLAY=:10 yarn test-browser --browser chromium