Fix aarch64 pipeline and update docker path in README
This commit is contained in:
parent
e239fc68b4
commit
29575d00ee
|
@ -65,14 +65,13 @@ jobs:
|
||||||
--slave /usr/bin/g++ g++ /usr/bin/g++-9
|
--slave /usr/bin/g++ g++ /usr/bin/g++-9
|
||||||
run: |
|
run: |
|
||||||
cd /src
|
cd /src
|
||||||
touch dockerbuild.txt
|
if [ -d build-opt ]; then
|
||||||
chown -R root build-opt/
|
chown -R root build-opt
|
||||||
ls -la build-opt/_deps/ || true
|
ls -l ./build-opt
|
||||||
echo "now /src:"
|
|
||||||
ls -l
|
|
||||||
for i in `ls -d ./build-opt/_deps/*-src`; do
|
for i in `ls -d ./build-opt/_deps/*-src`; do
|
||||||
git config --global --add safe.directory $(realpath $i)
|
git config --global --add safe.directory $(realpath $i)
|
||||||
done
|
done
|
||||||
|
fi
|
||||||
./tools/release.sh
|
./tools/release.sh
|
||||||
- name: Show the artifact
|
- name: Show the artifact
|
||||||
# Items placed in /src/build-opt in the container will be in
|
# Items placed in /src/build-opt in the container will be in
|
||||||
|
|
|
@ -60,8 +60,8 @@ Debian/Bullseye, Ubuntu 20.04.4 or later fit these requirements.
|
||||||
### With docker:
|
### With docker:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker pull ghcr.io/dragonflydb/dragonfly && \
|
docker pull docker.dragonflydb.io/dragonflydb/dragonfly && \
|
||||||
docker tag ghcr.io/dragonflydb/dragonfly dragonfly
|
docker tag docker.dragonflydb.io/dragonflydb/dragonfly dragonfly
|
||||||
|
|
||||||
docker run --network=host --ulimit memlock=-1 --rm dragonfly
|
docker run --network=host --ulimit memlock=-1 --rm dragonfly
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue