Skip to content

Commit

Permalink
Merge pull request #87 from satta/github-actions
Browse files Browse the repository at this point in the history
Switch to GitHub actions
  • Loading branch information
fhonza authored Aug 13, 2021
2 parents 2847755 + 039ecbd commit 76ee27a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 19 deletions.
18 changes: 0 additions & 18 deletions .circleci/config.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Go build

on:
- push
- pull_request

jobs:
build:
name: "Go build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16

- name: Install non-Go deps
run: |
sudo apt update
sudo apt -yq install redis-server
- name: Get and build deps
run: go get -v -t ./...

- name: Build executable
run: go build -v -o fever cmd/fever/main.go

- name: Run tests
run: go test -v ./...
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 🔥 FEVER [![CircleCI](https://circleci.com/gh/DCSO/fever.svg?style=svg)](https://circleci.com/gh/DCSO/fever)
# 🔥 FEVER

[![Build Status](https://img.shields.io/github/workflow/status/DCSO/fever/go.yaml)](https://github.com/DCSO/fever/actions/workflows/go.yaml) [![DebianSBadge](https://badges.debian.net/badges/debian/stable/fever/version.svg)](https://packages.debian.org/stable/fever) [![DebianTBadge](https://badges.debian.net/badges/debian/testing/fever/version.svg)](https://packages.debian.org/testing/fever) ![Ubuntu package](https://img.shields.io/ubuntu/v/fever)

The Fast, Extensible, Versatile Event Router (FEVER) is a tool for fast processing of events from Suricata's JSON EVE output. What is meant by 'processing' is defined by a number of modular components, for example facilitating fast ingestion into a database. Other processors implement collection, aggregation and forwarding of various metadata (e.g. aggregated and raw flows, passive DNS data, etc.) as well as performance metrics.

Expand Down

0 comments on commit 76ee27a

Please sign in to comment.