trash.sh/.drone.yml
Kim afb42a68d2
Some checks failed
continuous-integration/drone/push Build is failing
change to bash
2021-09-21 18:15:25 +02:00

64 lines
1.4 KiB
YAML

kind: pipeline
type: docker
name: default
workspace:
path: /root
steps:
- name: install
image: ubuntu:latest
pull: if-not-exists
commands:
- /bin/bash
- echo "source $HOME/trash.sh" > $HOME/.bashrc
- source $HOME/.bashrc
- ls -la $HOME/.trash/
- type trash
- name: test trash-empty
depends_on:
- install
image: ubuntu:latest
pull: if-not-exists
commands:
- touch /tmp/testfile{1..4}
- 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:
- touch /tmp/testfile{1..4}
- 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:
- touch /tmp/testfile{1..4}
- 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/