Skip to content

Fix tests

07d7f51
Select commit
Loading
Failed to load commit list.
Draft

WIP: SYN flood detector #59

Fix tests
07d7f51
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Branch succeeded Nov 22, 2024 in 2m 23s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a normal build for the sandbox-roberto-synflood-detector branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Version 1.20
Build Configuration
{
  "language": "go",
  "go": [
    "1.20"
  ],
  "before_install": [
    "echo '{\"ipv6\":true,\"fixed-cidr-v6\":\"2001:db8:1::/64\"}' | sudo tee /etc/docker/daemon.json",
    "sudo service docker restart"
  ],
  "install": [
    "sudo apt-get update && sudo apt-get install -y libpcap-dev",
    "go get -v -t ./..."
  ],
  "before_script": [
    "go install github.com/mattn/goveralls@latest"
  ],
  "script": [
    "go vet ./...",
    "go build ./...",
    "go test ./... -cover=1 -coverprofile=_c.cov",
    "go test ./... -race",
    "$GOPATH/bin/goveralls -service=travis-ci -coverprofile=_c.cov"
  ],
  "os": "linux",
  "group": "stable",
  "dist": "xenial"
}