Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup/macos-all.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

brew install libmagic
brew install libmagic lz4 etcd

2 changes: 1 addition & 1 deletion setup/ubuntu-24.04.bash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

sudo apt-get update && \
sudo apt-get install -y libmagic-dev && \
sudo apt-get install -y libmagic-dev etcd-server && \
sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/*

26 changes: 26 additions & 0 deletions test/lavinmq.bats
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env bats

function setup_file() {
load helper/common.bash

git_checkout https://github.com/cloudamqp/lavinmq
}

function setup() {
load helper/common.bash
}

@test "build lavinmq" {
skiponwindows "not supported"
make all CRYSTAL_FLAGS=
}

@test "test lavinmq" {
skiponwindows "not supported"
make test
}

# bats test_tags=format
@test "format lavinmq" {
crystal_format
}
Loading