From 0cc4ab7f17d43d625fa62813669a99735a45d156 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 30 Apr 2020 19:27:27 -0400 Subject: Add gitlab ci --- .ci/macos/Brewfile | 9 +++++++++ .ci/script.sh | 1 + .ci/upload-nightly-gitlab.sh | 9 +++++++++ 3 files changed, 19 insertions(+) create mode 100644 .ci/macos/Brewfile create mode 100755 .ci/upload-nightly-gitlab.sh (limited to '.ci') diff --git a/.ci/macos/Brewfile b/.ci/macos/Brewfile new file mode 100644 index 00000000..c32360ee --- /dev/null +++ b/.ci/macos/Brewfile @@ -0,0 +1,9 @@ +tap "nlohmann/json" + +brew "clang-format" +brew "cmake" +brew "ninja" +brew "openssl" +brew "qt5" +brew "python3" +brew "nlohmann_json" \ No newline at end of file diff --git a/.ci/script.sh b/.ci/script.sh index f43a6efb..63e7f135 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -71,6 +71,7 @@ cmake -GNinja -H. -Bbuild \ -DHUNTER_ROOT=".hunter" \ -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHUNTER_CONFIGURATION_TYPES=RelWithDebInfo \ + -DUSE_BUNDLED_OPENSSL=OFF \ -DCI_BUILD=ON fi cmake --build build diff --git a/.ci/upload-nightly-gitlab.sh b/.ci/upload-nightly-gitlab.sh new file mode 100755 index 00000000..c08857c1 --- /dev/null +++ b/.ci/upload-nightly-gitlab.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +file="$1" +fileName="nheko-${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}-${file##*-}" + +uri=$(curl -H "Authorization: Bearer ${MATRIX_ACCESS_TOKEN}" -H "Content-Type: application/x-compressed" -X POST --data-binary "@${file}" "https://matrix.neko.dev/_matrix/media/r0/upload?filename=${fileName}" --http1.1 | python -c "import sys, json; print(json.load(sys.stdin)['content_uri'])") +echo "Uploaded to ${uri}" + +curl -H "Authorization: Bearer ${MATRIX_ACCESS_TOKEN}" -H "Content-Type: application/json" -X PUT -d "{ \"body\": \"${fileName}\", \"filename\": \"${fileName}\", \"info\": { \"mimetype\": \"application/x-compressed\", \"size\": $(wc -c < ${file}) }, \"msgtype\": \"m.file\", \"url\": \"${uri}\" }" "https://matrix.neko.dev/_matrix/client/r0/rooms/${ROOM}/send/m.room.message/$(date +%s)" -- cgit 1.4.1