diff options
| author | Abouzar Parvan <[email protected]> | 2021-07-15 06:16:02 +0430 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-15 06:16:02 +0430 | 
| commit | 1411478e46a397b6649c44c82b67c9f48c53738a (patch) | |
| tree | ea832a2b2beeb61add2ddca0c52e13fdfd5de448 | |
| parent | 64eeec38808d27b3709f92862bd07e25140add59 (diff) | |
disable linux/freebsd testing for now
| -rw-r--r-- | .github/workflows/install.yaml | 44 | 
1 files changed, 22 insertions, 22 deletions
| diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 6531de0e..5c22d6fa 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -14,8 +14,8 @@ jobs:        fail-fast: false        matrix:          include: -          - runner: ubuntu-20.04 -            os: linux +#           - runner: ubuntu-20.04 +#             os: linux            - runner: macos-10.15              os: osx      runs-on: ${{ matrix.runner }} @@ -46,27 +46,27 @@ jobs:        - name: Test LunarVim Health          run: if nvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi -  freebsd: -    runs-on: macos-latest -    if: github.event.pull_request.draft == false -    continue-on-error: true # we don't support freebsd yet -    name: "FreeBSD macos-latest" -    steps: -      - uses: actions/checkout@v2 +#   freebsd: +#     runs-on: macos-latest +#     if: github.event.pull_request.draft == false +#     continue-on-error: true # we don't support freebsd yet +#     name: "FreeBSD macos-latest" +#     steps: +#       - uses: actions/checkout@v2 -      - name: Install dependencies for FreeBSD -        uses: vmactions/[email protected] -        with: -          prepare: pkg install -y curl neovim -          run: bash ./utils/installer/install.sh +#       - name: Install dependencies for FreeBSD +#         uses: vmactions/[email protected] +#         with: +#           prepare: pkg install -y curl neovim +#           run: bash ./utils/installer/install.sh -      - name: Test LunarVim PackerCompile -        uses: vmactions/[email protected] -        with: -          run: if nvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi +#       - name: Test LunarVim PackerCompile +#         uses: vmactions/[email protected] +#         with: +#           run: if nvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi -      - name: Test LunarVim Health -        uses: vmactions/[email protected] -        with: -          run: if nvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi +#       - name: Test LunarVim Health +#         uses: vmactions/[email protected] +#         with: +#           run: if nvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi | 
