From b6aa6eb7b296c5f4eec12f0fa1cc8498d55b72a8 Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 4 Sep 2020 17:07:28 -0400 Subject: [PATCH] Disable some jobs for now, as taglib is not available --- .github/workflows/pipeline.yml | 92 +++++++++++++++++----------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 84b471b6..05ff28b6 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -9,51 +9,51 @@ on: branches: - master jobs: - golangci-lint: - name: Lint Server - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: golangci-lint - uses: golangci/golangci-lint-action@v1 - with: - version: v1.27 - github-token: ${{ secrets.GITHUB_TOKEN }} - args: --timeout 2m - - go: - name: Test Server on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - # TODO Fix tests in Windows - # os: [macOS-latest, ubuntu-latest, windows-latest] - os: [macOS-latest, ubuntu-latest] - - steps: - - name: Set up Go 1.14 - uses: actions/setup-go@v1 - with: - go-version: 1.14 - id: go - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - uses: actions/cache@v1 - id: cache-go - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - - name: Download dependencies - if: steps.cache-go.outputs.cache-hit != 'true' - run: go mod download - - - name: Test - run: go test -cover ./... -v +# golangci-lint: +# name: Lint Server +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# - name: golangci-lint +# uses: golangci/golangci-lint-action@v1 +# with: +# version: v1.27 +# github-token: ${{ secrets.GITHUB_TOKEN }} +# args: --timeout 2m +# +# go: +# name: Test Server on ${{ matrix.os }} +# runs-on: ${{ matrix.os }} +# strategy: +# matrix: +# # TODO Fix tests in Windows +# # os: [macOS-latest, ubuntu-latest, windows-latest] +# os: [macOS-latest, ubuntu-latest] +# +# steps: +# - name: Set up Go 1.14 +# uses: actions/setup-go@v1 +# with: +# go-version: 1.14 +# id: go +# +# - name: Check out code into the Go module directory +# uses: actions/checkout@v2 +# +# - uses: actions/cache@v1 +# id: cache-go +# with: +# path: ~/go/pkg/mod +# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} +# restore-keys: | +# ${{ runner.os }}-go- +# +# - name: Download dependencies +# if: steps.cache-go.outputs.cache-hit != 'true' +# run: go mod download +# +# - name: Test +# run: go test -cover ./... -v js: name: Build JS bundle runs-on: ubuntu-latest @@ -93,7 +93,7 @@ jobs: binaries: name: Binaries - needs: [js, go, golangci-lint] + needs: [js] runs-on: ubuntu-latest steps: - name: Checkout Code