disable github ci linux until they fix the issue (#8953)

This commit is contained in:
Anthony Dresser
2020-01-24 11:54:53 -08:00
committed by GitHub
parent 9e61c468d1
commit f49fe59e1f

View File

@@ -11,46 +11,46 @@ on:
- release/* - release/*
jobs: jobs:
linux: # linux:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
env: # env:
CHILD_CONCURRENCY: "1" # CHILD_CONCURRENCY: "1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps: # steps:
- uses: actions/checkout@v1 # - uses: actions/checkout@v1
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions # # TODO: rename azure-pipelines/linux/xvfb.init to github-actions
- run: | # - run: |
sudo apt-get update # 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 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 cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
sudo chmod +x /etc/init.d/xvfb # sudo chmod +x /etc/init.d/xvfb
sudo update-rc.d xvfb defaults # sudo update-rc.d xvfb defaults
sudo service xvfb start # sudo service xvfb start
name: Setup Build Environment # name: Setup Build Environment
- uses: actions/setup-node@v1 # - uses: actions/setup-node@v1
with: # with:
node-version: 10 # node-version: 10
# TODO: cache node modules # # TODO: cache node modules
- run: yarn --frozen-lockfile # - run: yarn --frozen-lockfile
name: Install Dependencies # name: Install Dependencies
- run: yarn electron x64 # - run: yarn electron x64
name: Download Electron # name: Download Electron
- run: yarn gulp hygiene # - run: yarn gulp hygiene
name: Run Hygiene Checks # name: Run Hygiene Checks
- run: yarn strict-null-check # {{SQL CARBON EDIT}} add step # - run: yarn strict-null-check # {{SQL CARBON EDIT}} add step
name: Run Strict Null Check # name: Run Strict Null Check
# - run: yarn monaco-compile-check {{SQL CARBON EDIT}} remove step # # - run: yarn monaco-compile-check {{SQL CARBON EDIT}} remove step
# name: Run Monaco Editor Checks # # name: Run Monaco Editor Checks
- run: yarn valid-layers-check # - run: yarn valid-layers-check
name: Run Valid Layers Checks # name: Run Valid Layers Checks
- run: yarn compile # - run: yarn compile
name: Compile Sources # name: Compile Sources
# - run: yarn download-builtin-extensions {{SQL CARBON EDIT}} remove step # # - run: yarn download-builtin-extensions {{SQL CARBON EDIT}} remove step
# name: Download Built-in Extensions # # name: Download Built-in Extensions
- run: DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests" # - run: DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests"
name: Run Unit Tests # name: Run Unit Tests
# - run: DISPLAY=:10 ./scripts/test-integration.sh --tfs "Integration Tests" {{SQL CARBON EDIT}} remove step # # - run: DISPLAY=:10 ./scripts/test-integration.sh --tfs "Integration Tests" {{SQL CARBON EDIT}} remove step
# name: Run Integration Tests # # name: Run Integration Tests
windows: windows:
runs-on: windows-2016 runs-on: windows-2016