Untangle precommit and travis test scripts (#288)
parent
38999c54e1
commit
e9314e5b30
|
@ -24,8 +24,8 @@ before_script:
|
||||||
- openssl req -x509 -newkey rsa:4096 -keyout server.key -out server.crt -days 365 -nodes -subj /CN=localhost
|
- openssl req -x509 -newkey rsa:4096 -keyout server.key -out server.crt -days 365 -nodes -subj /CN=localhost
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./travis-install-kafka.sh
|
- ./scripts/install-local-kafka.sh
|
||||||
- ./travis-test.sh
|
- ./scripts/travis-test.sh
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
webhooks:
|
webhooks:
|
||||||
|
|
|
@ -17,7 +17,7 @@ Dendrite can be run in one of two configurations:
|
||||||
- For Kafka (optional if using the monolith server):
|
- For Kafka (optional if using the monolith server):
|
||||||
- Unix-based system (https://kafka.apache.org/documentation/#os)
|
- Unix-based system (https://kafka.apache.org/documentation/#os)
|
||||||
- JDK 1.8+ / OpenJDK 1.8+
|
- JDK 1.8+ / OpenJDK 1.8+
|
||||||
- Apache Kafka 0.10.2+ (see [travis-install-kafka.sh](travis-install-kafka.sh) for up-to-date version numbers)
|
- Apache Kafka 0.10.2+ (see [scripts/install-local-kafka.sh](scripts/install-local-kafka.sh) for up-to-date version numbers)
|
||||||
|
|
||||||
|
|
||||||
## Setting up a development environment
|
## Setting up a development environment
|
||||||
|
@ -34,7 +34,7 @@ go get github.com/constabulary/gb/...
|
||||||
gb build
|
gb build
|
||||||
```
|
```
|
||||||
|
|
||||||
If using Kafka, install and start it (c.f. [travis-install-kafka.sh](travis-install-kafka.sh)):
|
If using Kafka, install and start it (c.f. [scripts/install-local-kafka.sh](scripts/install-local-kafka.sh)):
|
||||||
```bash
|
```bash
|
||||||
MIRROR=http://apache.mirror.anlx.net/kafka/0.10.2.0/kafka_2.11-0.10.2.0.tgz
|
MIRROR=http://apache.mirror.anlx.net/kafka/0.10.2.0/kafka_2.11-0.10.2.0.tgz
|
||||||
|
|
||||||
|
|
|
@ -2,33 +2,4 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
# Tune the GC to use more memory to reduce the number of garbage collections
|
./scripts/build-test-lint.sh
|
||||||
export GOGC=400
|
|
||||||
export GOPATH="$(pwd):$(pwd)/vendor"
|
|
||||||
export PATH="$PATH:$(pwd)/vendor/bin:$(pwd)/bin"
|
|
||||||
|
|
||||||
echo "Checking that it builds"
|
|
||||||
gb build
|
|
||||||
|
|
||||||
# Check that all the packages can build.
|
|
||||||
# When `go build` is given multiple packages it won't output anything, and just
|
|
||||||
# checks that everything builds. This seems to do a better job of handling
|
|
||||||
# missing imports than `gb build` does.
|
|
||||||
echo "Double checking it builds..."
|
|
||||||
go build github.com/matrix-org/dendrite/cmd/...
|
|
||||||
|
|
||||||
echo "Installing lint search engine..."
|
|
||||||
go install github.com/alecthomas/gometalinter/
|
|
||||||
gometalinter --config=linter.json ./... --install
|
|
||||||
|
|
||||||
echo "Looking for lint..."
|
|
||||||
gometalinter --config=linter.json ./... --enable-gc
|
|
||||||
|
|
||||||
echo "Double checking spelling..."
|
|
||||||
misspell -error src *.md
|
|
||||||
|
|
||||||
echo "Testing..."
|
|
||||||
gb test
|
|
||||||
|
|
||||||
|
|
||||||
echo "Done!"
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Dev Scripts
|
||||||
|
|
||||||
|
These are a collection of scripts that should be helpful for those developing
|
||||||
|
on dendrite.
|
||||||
|
|
||||||
|
See `find-lint.sh` for environment variables that control linter resource
|
||||||
|
usage.
|
|
@ -0,0 +1,26 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
# Builds, tests and lints dendrite, and should be run before pushing commits
|
||||||
|
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
export GOPATH="$(pwd):$(pwd)/vendor"
|
||||||
|
export PATH="$PATH:$(pwd)/vendor/bin:$(pwd)/bin"
|
||||||
|
|
||||||
|
echo "Checking that it builds"
|
||||||
|
gb build
|
||||||
|
|
||||||
|
# Check that all the packages can build.
|
||||||
|
# When `go build` is given multiple packages it won't output anything, and just
|
||||||
|
# checks that everything builds. This seems to do a better job of handling
|
||||||
|
# missing imports than `gb build` does.
|
||||||
|
echo "Double checking it builds..."
|
||||||
|
go build github.com/matrix-org/dendrite/cmd/...
|
||||||
|
|
||||||
|
./scripts/find-lint.sh
|
||||||
|
|
||||||
|
echo "Double checking spelling..."
|
||||||
|
misspell -error src *.md
|
||||||
|
|
||||||
|
echo "Testing..."
|
||||||
|
gb test
|
|
@ -0,0 +1,41 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
# Runs the linters against dendrite
|
||||||
|
|
||||||
|
# The linters can take a lot of resources and are slow, so they can be
|
||||||
|
# configured using two environment variables:
|
||||||
|
#
|
||||||
|
# - `DENDRITE_LINT_CONCURRENCY` - number of concurrent linters to run,
|
||||||
|
# gometalinter defaults this to 8
|
||||||
|
# - `DENDRITE_LINT_DISABLE_GC` - if set then the the go gc will be disabled
|
||||||
|
# when running the linters, speeding them up but using much more memory.
|
||||||
|
|
||||||
|
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
export GOPATH="$(pwd):$(pwd)/vendor"
|
||||||
|
export PATH="$PATH:$(pwd)/vendor/bin:$(pwd)/bin"
|
||||||
|
|
||||||
|
args=""
|
||||||
|
if [ ${1:-""} = "fast" ]
|
||||||
|
then args="--config=linter-fast.json"
|
||||||
|
else args="--config=linter.json"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${DENDRITE_LINT_CONCURRENCY:-}" ]
|
||||||
|
then args="$args --concurrency=$DENDRITE_LINT_CONCURRENCY"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "${DENDRITE_LINT_DISABLE_GC:-}" ]
|
||||||
|
then args="$args --enable-gc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Installing lint search engine..."
|
||||||
|
go install github.com/alecthomas/gometalinter/
|
||||||
|
gometalinter --config=linter.json ./... --install
|
||||||
|
|
||||||
|
echo "Looking for lint..."
|
||||||
|
gometalinter ./... $args
|
||||||
|
|
||||||
|
echo "Double checking spelling..."
|
||||||
|
misspell -error src *.md
|
|
@ -1,5 +1,7 @@
|
||||||
# /bin/bash
|
# /bin/bash
|
||||||
|
|
||||||
|
# Downloads, installs and runs a kafka instance
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
# The mirror to download kafka from is picked from the list of mirrors at
|
# The mirror to download kafka from is picked from the list of mirrors at
|
|
@ -1,7 +1,13 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
|
# The entry point for travis tests
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
|
# Tune the GC to use more memory to reduce the number of garbage collections
|
||||||
|
export GOGC=400
|
||||||
|
export DENDRITE_LINT_DISABLE_GC=1
|
||||||
|
|
||||||
# Check that the servers build (this is done explicitly because `gb build` can silently fail (exit 0) and then we'd test a stale binary)
|
# Check that the servers build (this is done explicitly because `gb build` can silently fail (exit 0) and then we'd test a stale binary)
|
||||||
gb build github.com/matrix-org/dendrite/cmd/dendrite-room-server
|
gb build github.com/matrix-org/dendrite/cmd/dendrite-room-server
|
||||||
gb build github.com/matrix-org/dendrite/cmd/roomserver-integration-tests
|
gb build github.com/matrix-org/dendrite/cmd/roomserver-integration-tests
|
||||||
|
@ -12,8 +18,8 @@ gb build github.com/matrix-org/dendrite/cmd/dendrite-media-api-server
|
||||||
gb build github.com/matrix-org/dendrite/cmd/mediaapi-integration-tests
|
gb build github.com/matrix-org/dendrite/cmd/mediaapi-integration-tests
|
||||||
gb build github.com/matrix-org/dendrite/cmd/client-api-proxy
|
gb build github.com/matrix-org/dendrite/cmd/client-api-proxy
|
||||||
|
|
||||||
# Run the pre commit hooks
|
# Run unit tests and linters
|
||||||
./hooks/pre-commit
|
./scripts/build-test-lint.sh
|
||||||
|
|
||||||
# Run the integration tests
|
# Run the integration tests
|
||||||
bin/roomserver-integration-tests
|
bin/roomserver-integration-tests
|
Loading…
Reference in New Issue