-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM ubuntu:18.04 | ||
RUN apt update && apt -y upgrade | ||
RUN apt -y install git cmake build-essential m4 pkg-config autoconf \ | ||
libtool libtool-bin libssl-dev libmysqlclient-dev libcurl4-openssl-dev wget \ | ||
llvm clang bison libglib2.0-dev libc6-dev-i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Build/CI Tools | ||
|
||
## Windows | ||
* **setup_build_env.ps1** - script that installs build dependencies on a Windows machine (to set it up as a CI runner) | ||
* **update_repos.bat** - script run by CI to ensure associated repos are present and at the right version | ||
* **release.bat** - script run by CI to build a binary release of Killerbeez for windows | ||
* **release_excludes.txt** - file used by release.bat during packaging step | ||
|
||
## Linux | ||
Files: | ||
* **Dockerfile** - build environment for killerbeez | ||
|
||
Setting up a CI runner: | ||
``` | ||
docker build -t killerbeez-builder . | ||
``` |