From b1319e1db073e42db313d48870d606ad696c9b47 Mon Sep 17 00:00:00 2001 From: Geod24 Date: Wed, 3 Jul 2019 15:11:40 +0900 Subject: [PATCH] Add bpfkorea/agora and Geod24/localrest The former is our company's main project and uses a lot of C++ interop on POSIX. The second uses threads, message passing and std.concurrency. --- buildkite.sh | 2 ++ buildkite/build_project.sh | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/buildkite.sh b/buildkite.sh index ffb8a155..996a252c 100755 --- a/buildkite.sh +++ b/buildkite.sh @@ -159,6 +159,7 @@ projects=( #"ariovistus/pyd" "atilaneves/automem" "AuburnSounds/intel-intrinsics" + "bpfkorea/agora" "DerelictOrg/DerelictFT" "DerelictOrg/DerelictGL3" "DerelictOrg/DerelictGLFW3" @@ -166,6 +167,7 @@ projects=( "dlang-community/containers" "dlang/undeaD" "DlangScience/scid" + "Geod24/localrest" "ikod/dlang-requests" "kaleidicassociates/excel-d" "kaleidicassociates/lubeck" diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index 81b7a244..94dc8c67 100755 --- a/buildkite/build_project.sh +++ b/buildkite/build_project.sh @@ -37,6 +37,10 @@ case "$REPO_URL" in # ldc doesn't really do point releases, so master is easier to adapt if needed. latest_tag=master ;; + https://github.com/bpfkorea/agora) + # BPFK doesn't really have releases for the time being + latest_tag=v0.x.x + ;; *) ;; esac @@ -218,6 +222,12 @@ case "$REPO_FULL_NAME" in make test V=1 F=production ALLOW_DEPRECATIONS=1 ;; + bpfkorea/agora) + git submodule update --init + dub build --compiler=$DC + dub test --compiler=$DC + ;; + eBay/tsv-utils) make test "DCOMPILER=$DC" ;;