Disable some jobs for now, as taglib is not available

This commit is contained in:
Deluan 2020-09-04 17:07:28 -04:00 committed by Deluan Quintão
parent 1187ee7cc1
commit b6aa6eb7b2
1 changed files with 46 additions and 46 deletions

View File

@ -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