Skip to content

Commit

Permalink
add instruction for vm
Browse files Browse the repository at this point in the history
  • Loading branch information
Shikaree68 committed Mar 25, 2024
1 parent 11145c5 commit a189945
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .github/actions/prepare_vm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ 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
cd
sudo wget https://github.com/aklomp/base64/archive/refs/tags/v0.5.2.tar.gz
sudo tar -xvzf v0.5.2.tar.gz
cd base64-0.5.2
sudo mkdir build
cd build
sudo cmake ..
sudo cmake --build . --target install
cd ../../
sudo rm -r ./base64-0.5.2
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,15 @@ cd libiconv-1.15
sudo make
sudo make install

git clone https://github.com/aklomp/base64.git
cd base64
mkdir build
sudo wget https://github.com/aklomp/base64/archive/refs/tags/v0.5.2.tar.gz
sudo tar -xvzf v0.5.2.tar.gz
cd base64-0.5.2
sudo mkdir build
cd build
cmake --build ..
cmake --build . --target install
sudo cmake ..
sudo cmake --build . --target install
cd ../../
rm -r ./base64
sudo rm -r ./base64-0.5.2
```

## Create the work directory
Expand Down

0 comments on commit a189945

Please sign in to comment.