BAStos525

Results 43 comments of BAStos525

same problem here: `dial tcp 10.43.161.26:8081: connect: connection refused"` `error="failed to send request to remote rendering service` Grafana v 8.4.5 Image Rendeder v 3.4.2 (latest) Kubernetes deployment through Grafana Helm...

i think that the problem here is in cross platform musl compilation for ARM arch on Darwin platform. Using M1 self-hosted runner, I was able to compile base image on...

May be we can try to use this as [base image](https://hub.docker.com/r/crazymax/osxcross/tags)?

I was able to compile iroha without Docker on local M1 instance. 1. Add `./cargo/config.toml` with following lines: ``` [target.x86_64-unknown-linux-musl] linker = "x86_64-linux-musl-gcc" ``` 2. Install the required linker: `brew...

What do you suggest to cache?

So. @Arjentix reported that the last `iroha2-dev` image works correctly on his M1 machine through docker-compose deployment.

I mean do you suggest to cache the whole CI image with all rustup and cargo dependencies?

Using the simplest `type=gha` cache type it allows automatically keep the cache of [the `base-image`](https://github.com/hyperledger/iroha/pull/2809). These cached docker layers are available only within the target branch (we can not use...

I can notice that for ex `base-image` cache works with cache type `gha`. It allows to save a some time amount of `dockerhub` job. 1. the first `dockerhub` job without...

Since we enabled caching for builder ci-image, its approximate cache size is more than 2 Gb. And assume that the main reason why we did it it was to bypass...