trash.sh/.drone.yml
Kim 493b295230
Some checks failed
continuous-integration/drone/push Build is failing
fix touch of multiple test files
2021-09-21 18:35:39 +02:00

69 lines
1.5 KiB
YAML

kind: pipeline
type: docker
name: default
workspace:
path: /root
steps:
- name: install
image: ubuntu:latest
pull: if-not-exists
commands:
- echo ". $HOME/trash.sh" > $HOME/.bashrc
- . $HOME/.bashrc
- ls -la $HOME/.trash/
- type trash
- name: test trash_empty
depends_on:
- install
image: ubuntu:latest
pull: if-not-exists
commands:
- /bin/bash
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile*
- trash /tmp/testfile*
- ls -l /tmp/testfile*
- trash_list
- ls -la $HOME/.trash/
- trash_empty
- ls -la $HOME/.trash/
- name: test trash_restore
depends_on:
- install
image: ubuntu:latest
pull: if-not-exists
commands:
- /bin/bash
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile*
- trash /tmp/testfile*
- ls -l /tmp/testfile*
- trash_list
- ls -la $HOME/.trash/
- trash_restore
- ls -l /tmp/testfile*
- ls -la $HOME/.trash/
- name: test trash_rm
depends_on:
- install
image: ubuntu:latest
pull: if-not-exists
commands:
- /bin/bash
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile*
- trash /tmp/testfile*
- ls -l /tmp/testfile*
- trash_list
- ls -la $HOME/.trash/
- trash_rm testfile2 testfile3
- trash_list
- ls -la $HOME/.trash/