Skip to content

Commit

Permalink
fixup! [feature] Add support for fsspec backends
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 6, 2024
1 parent 39a900e commit 12b6531
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/appimage-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ jobs:
parallelization: [0, 1, 2]

steps:
- uses: actions/checkout@v4
with:
# We need one tag for testing the git mount.
# This is BROKEN! God damn it. Is anything working at all...
# https://github.com/actions/checkout/issues/1781
fetch-tags: true

- name: Fetch tag for tests
run: git fetch origin refs/tags/v0.15.2:refs/tags/v0.15.2

- uses: actions/download-artifact@v3
with:
name: ratarmount-x86_64.AppImage
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ jobs:
parallelization: [0, 1, 2]

steps:
- uses: actions/checkout@v4
with:
# We need one tag for testing the git mount.
# This is BROKEN! God damn it. Is anything working at all...
# https://github.com/actions/checkout/issues/1781
fetch-tags: true

- name: Fetch tag for tests
run: git fetch origin refs/tags/v0.15.2:refs/tags/v0.15.2

- uses: actions/download-artifact@v3
with:
name: ratarmount-x86_64.AppImage
Expand Down
5 changes: 3 additions & 2 deletions tests/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1884,9 +1884,10 @@ checkURLProtocolFTP()
password='ioweb123GUIweb'
port=8021
echo "Starting FTP server..."
python3 -m pyftpdlib --user="$user" --password="$password" --port "$port" --interface 127.0.0.1 2>/dev/null &
python3 -m pyftpdlib --user="$user" --password="$password" --port "$port" --interface 127.0.0.1 &
pid=$!
sleep 1
sleep 2s
wget "ftp://$user:$password@127.0.0.1:8021/tests/single-file.tar"

checkFileInTAR "ftp://$user:$password@127.0.0.1:8021/tests/single-file.tar" bar d3b07384d113edec49eaa6238ad5ff00 ||
returnError "$LINENO" 'Failed to read from FTP server'
Expand Down

0 comments on commit 12b6531

Please sign in to comment.