Skip to content

Instantly share code, notes, and snippets.

View advancedwebdeveloper's full-sized avatar

Yan Titarenko advancedwebdeveloper

View GitHub Profile
......... FAILURE [ 50.448 s] [INFO] minifi-c2-cache-s3 ................................. SUCCESS [ 37.647 s] [INFO] minifi-c2-provider ................................. SUCCESS [ 0.511 s] [INFO] minifi-c2-provider-util ............................ SUCCESS [ 25.039 s] [INFO] minifi-c2-provider-cache ........................... FAILURE [ 47.291 s] [INFO] minifi-c2-provider-delegating ...................... SKIPPED [INFO] minifi-c2-provider-nifi-rest ....................... SKIPPED [INFO] minifi-c2-service .................................. FAILURE [ 52.483 s] [INFO] minifi-c2-jetty .................................... SUCCESS [ 47.225 s] [INFO] minifi-c2-assembly ................................. SKIPPED [INFO] minifi-c2-docker ................................... SUCCESS [ 0.4
@advancedwebdeveloper
advancedwebdeveloper / llvm-libc_build
Created June 11, 2022 15:35
Listing the output of the "make" tool. Related to https://reviews.llvm.org/D127571
$ make
Scanning dependencies of target libc_test_utils
[ 0%] Building CXX object libc/utils/testutils/CMakeFiles/libc_test_utils.dir/RandUtils.cpp.o
[ 0%] Building CXX object libc/utils/testutils/CMakeFiles/libc_test_utils.dir/StreamWrapper.cpp.o
[ 0%] Building CXX object libc/utils/testutils/CMakeFiles/libc_test_utils.dir/ExecuteFunctionUnix.cpp.o
[ 0%] Building CXX object libc/utils/testutils/CMakeFiles/libc_test_utils.dir/FDReaderUnix.cpp.o
[ 0%] Building CXX object libc/utils/testutils/CMakeFiles/libc_test_utils.dir/Timer.cpp.o
[ 0%] Linking CXX static library liblibc_test_utils.a
[ 0%] Built target libc_test_utils
Scanning dependencies of target libc.src.__support.CPP.type_traits
$ CC=clang CXX=clang++ cmake -DLLVM_ENABLE_RUNTIMES=libc -DCMAKE_INSTALL_PREFIX=/home/advancedwebdeveloper/libc_install -DCMAKE_BUILD_TYPE=MinSizeRel ../llvm-project-main/runtimes
-- The C compiler identification is Clang 12.0.0
-- The CXX compiler identification is Clang 12.0.0
-- The ASM compiler identification is Clang
-- Found assembler: /usr/bin/clang
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
@advancedwebdeveloper
advancedwebdeveloper / gollvm_riscv_clang_mold.log
Created March 25, 2022 14:21
Building gollvm, under emulated RISC-V env., with Clang 10 and mold
$ cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DLLVM_USE_LINKER=mold -DGOLLVM_DEFAULT_LINKER=mold -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -G Ninja ../llvm-project/llvm
-- The C compiler identification is Clang 10.0.0
-- The CXX compiler identification is Clang 10.0.0
-- The ASM compiler identification is Clang
-- Found assembler: /usr/bin/clang
-- Check for working C compiler: /usr/bin/clang
-- Check for working C compiler: /usr/bin/clang -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
@advancedwebdeveloper
advancedwebdeveloper / gollvm_riscv_gcc_mold.log
Last active March 25, 2022 14:12
Trying to build gollvm, under emulated RISC-V, with GCC and mold
$ cmake -DCMAKE_BUILD_TYPE=MinSizeRel -G Ninja ../llvm-project/llvm
-- The C compiler identification is GNU 9.4.0
-- The CXX compiler identification is GNU 9.4.0
-- The ASM compiler identification is GNU
-- Found assembler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
diff --git a/Dockerfile b/Dockerfile
index 7e882a1..984959c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.14.2-alpine3.11 as builder
+FROM golang:1.16.2-alpine3.12 as builder
WORKDIR $GOPATH/src/github.com/thanos-io/thanosbench
# Change in the docker context invalidates the cache so to leverage docker
# layer caching, moving update and installing apk packages above COPY cmd
diff --git a/Dockerfile b/Dockerfile
index 4e93c88..ab3ad25 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-ARG BUILDPLATFORM=linux/amd64
+ARG BUILDPLATFORM=linux/arm64
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.16.2 as builder
$ make test
go run sigs.k8s.io/controller-tools/cmd/controller-gen object:headerFile="hack/boilerplate.go.txt" paths="./..."
go fmt ./...
go fmt ./test/e2e/
go vet ./...
Generating the Contour CRD YAML document...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 107k 100 107k 0 0 2058k 0 --:--:-- --:--:-- --:--:-- 2058k
go run sigs.k8s.io/controller-tools/cmd/controller-gen "crd:crdVersions=v1" rbac:roleName=contour-operator webhook paths="./..." output:crd:artifacts:config=config/crd/bases
helm kudo parsec spire
helm-mixin kuma piraeus-ha-controller strimzi
cert-manager envoy helm-v3.5.3-linux-arm64.tar kyverno piraeus-operator thanos
etcd hub litmus plugins
cni_gollvm.log falco in-toto porter tikv
containerd fluentd jaeger longhorn pravega tools
contour flux k3s notary prometheus tremor-runtime
coredns k8dash opa rkt virtual-kubelet
cortex keadm.log opentracing-go schemahero volcano
cri-o keda openyurt smi-adapter-istio
diff --git a/build.gradle b/build.gradle
index dde0a2f..7fb758f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -26,7 +26,7 @@ buildscript {
}
plugins {
- id 'com.github.blindpirate.gogradle' version '0.10'
+ id 'com.github.blindpirate.gogradle' version '0.11.4'