fix: replace grep with ripgrep due to excruciating timing (#1170)

This commit is contained in:
Baptiste Augrain
2022-08-05 13:09:02 +02:00
committed by GitHub
parent 8883466ef5
commit 2874277aa4
2 changed files with 48 additions and 12 deletions

View File

@@ -35,6 +35,7 @@
- dpkg
- python3
- imagemagick (for AppImage)
- ripgrep
### <a id="dependencies-macos"></a>MacOS
@@ -65,6 +66,10 @@ Firstly, create the container with:
```
docker run -ti --volume=<local vscodium source>:/root/vscodium --name=vscodium-build-agent vscodium/vscodium-linux-build-agent:bionic-x64 bash
```
like
```
docker run -ti --volume=$(pwd):/root/vscodium --name=vscodium-build-agent vscodium/vscodium-linux-build-agent:bionic-x64 bash
```
When inside the container, you can use the following commands to build:
```
@@ -90,6 +95,10 @@ Firstly, create the container with:
```
docker run -ti --volume=<local vscodium source>:/root/vscodium --name=vscodium-build-agent vscodium/vscodium-linux-build-agent:stretch-armhf bash
```
like
```
docker run -ti --volume=$(pwd):/root/vscodium --name=vscodium-build-agent vscodium/vscodium-linux-build-agent:stretch-armhf bash
```
When inside the container, you can use the following commands to build:
```