Skip to content

Commit

Permalink
CI: fix mount in background (#4846)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoucheng361 authored May 13, 2024
1 parent da4579a commit b553e1d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/aitests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ jobs:
- name: Juicefs Mount
run: |
if [ "${{matrix.type}}" == "normal" ]; then
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --no-usage-report
elif [ "${{matrix.type}}" == "cache" ]; then
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --cache-size 3072 --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --cache-size 3072 --no-usage-report
else
echo "matrix.type error: ${{matrix.type}} "
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report --cache-size 1024 --max-deletes 50 &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report --cache-size 1024 --max-deletes 50
- name: Install Dependency
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/elastictest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report
- name: Install Elasticsearch
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/filebench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report
- name: Install Dependency
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ltpfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /tmp/jfs --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /tmp/jfs --no-usage-report
- name: LTP FS
timeout-minutes: 50
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ltpsyscalls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: |
source .github/scripts/start_meta_engine.sh
meta_url=$(get_meta_url ${{matrix.meta}})
sudo ./juicefs mount --enable-xattr -d $meta_url /tmp/jfs --no-usage-report &
sudo ./juicefs mount --enable-xattr -d $meta_url /tmp/jfs --no-usage-report
- name: Install LTP Syscalls
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mongodb_mmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --cache-size 3072 --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /jfs/ --enable-xattr --cache-size 3072 --no-usage-report
- name: Set up Mongodb
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mysqltest_bigtable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Juicefs Mount
run: |
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /tmp/jfs --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /tmp/jfs --no-usage-report
- name: Change Data Dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sysbench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: |
source .github/scripts/start_meta_engine.sh
meta_url=$(get_meta_url ${{matrix.meta}})
sudo ./juicefs mount -d $meta_url /jfs --no-usage-report &
sudo ./juicefs mount -d $meta_url /jfs --no-usage-report
- name: Install Sysbench
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tpch_clickhouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
run: |
if [ "${{matrix.type}}" = "limitcache" ]; then
echo "mount: type is limitcache"
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --cache-size 3072 --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --cache-size 3072 --no-usage-report
elif [ "${{matrix.type}}" = "normal" ]; then
echo "mount: type is normal"
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report &
sudo ./juicefs mount -d redis://127.0.0.1:6379/1 /data/jfs --no-usage-report
elif [ "${{matrix.type}}" = "local" ]; then
echo "mount: type is local"
sudo mkdir -p /data/jfs/
Expand Down

0 comments on commit b553e1d

Please sign in to comment.