mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-03 12:13:09 -06:00
Remove if true
This commit is contained in:
parent
9b1ffab8d4
commit
d045791481
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
|
|
@ -57,7 +57,6 @@ jobs:
|
||||||
# Run golangci-lint
|
# Run golangci-lint
|
||||||
lint:
|
lint:
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
if: "true"
|
|
||||||
name: Linting
|
name: Linting
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -68,7 +67,6 @@ jobs:
|
||||||
# run go test with different go versions
|
# run go test with different go versions
|
||||||
test:
|
test:
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
if: "true"
|
|
||||||
name: Unit tests (Go ${{ matrix.go }})
|
name: Unit tests (Go ${{ matrix.go }})
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
|
@ -95,7 +93,6 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: Build for Linux
|
name: Build for Linux
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
if: "true"
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
@ -130,7 +127,6 @@ jobs:
|
||||||
build_windows:
|
build_windows:
|
||||||
name: Build for Windows
|
name: Build for Windows
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
if: "true"
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
@ -163,7 +159,6 @@ jobs:
|
||||||
# Dummy step to gate other tests on without repeating the whole list
|
# Dummy step to gate other tests on without repeating the whole list
|
||||||
initial-tests-done:
|
initial-tests-done:
|
||||||
name: Initial tests passed
|
name: Initial tests passed
|
||||||
#if: "true"
|
|
||||||
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
|
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
|
||||||
needs: [ test, build, build_windows ]
|
needs: [ test, build, build_windows ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -246,7 +241,6 @@ jobs:
|
||||||
name: Complement
|
name: Complement
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
needs: initial-tests-done
|
needs: initial-tests-done
|
||||||
if: "true"
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
# Env vars are set file a file given by $GITHUB_PATH. We need both Go 1.17 and GOPATH on env to run Complement.
|
# Env vars are set file a file given by $GITHUB_PATH. We need both Go 1.17 and GOPATH on env to run Complement.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue