From df68d16d91a32f113836b3ebb3ae8d8bbbab1095 Mon Sep 17 00:00:00 2001 From: RusFor Date: Fri, 22 Mar 2024 23:17:08 +0300 Subject: [PATCH] add instruction for vm --- .github/actions/prepare_vm/action.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/actions/prepare_vm/action.yaml b/.github/actions/prepare_vm/action.yaml index f2eadaa9f6..6dc42b9c03 100644 --- a/.github/actions/prepare_vm/action.yaml +++ b/.github/actions/prepare_vm/action.yaml @@ -26,3 +26,11 @@ runs: (V=4.8.1; curl -L https://github.com/ccache/ccache/releases/download/v${V}/ccache-${V}-linux-x86_64.tar.xz | \ sudo tar -xJ -C /usr/local/bin/ --strip-components=1 --no-same-owner ccache-${V}-linux-x86_64/ccache) sudo rm -rf llvm.sh libiconv-1.15 + sudo git clone https://github.com/aklomp/base64.git + cd base64 + mkdir build + cd build + sudo cmake --build .. + sudo cmake --build . --target install + cd ../../ + rm -r ./base64 \ No newline at end of file