Skip to content

Use incremental backups as base for new backups to save storage cost #87

Use incremental backups as base for new backups to save storage cost

Use incremental backups as base for new backups to save storage cost #87

Workflow file for this run

name: test
on:
workflow_dispatch:
pull_request:
branches: [ master ]
jobs:
test:
environment: test
runs-on: ubuntu-20.04
services:
s3:
image: localstack/localstack:s3-latest
ports:
- 4566:4566
env:
SERVICES: s3
AWS_ACCESS_KEY_ID: testkey
AWS_SECRET_ACCESS_KEY: testsecret
DEFAULT_REGION: us-east-2
steps:
- uses: actions/checkout@v3
- name: Install Python 3.6
uses: actions/setup-python@v4
with:
python-version: 3.6
- name: Create S3 bucket
env:
AWS_ACCESS_KEY_ID: testkey
AWS_SECRET_ACCESS_KEY: testsecret
run: |
aws --endpoint-url=http://localhost:4566 s3 mb s3://testbucket --region us-east-2
- name: Run Flake8
run: |
pip install --upgrade pip
pip install flake8
flake8
- name: Install dependencies
run: |
sudo pip install -r requirements.txt
- name: Install ZFS
run: |
sudo apt-get update
sudo apt-get install -y zfsutils-linux
- name: Create zpool
run: |
truncate --size 1G disk-image
sudo zpool create test-pool \
/home/runner/work/zfs_uploader/zfs_uploader/disk-image
- name: Run test suite
env:
AWS_ACCESS_KEY_ID: testkey
AWS_SECRET_ACCESS_KEY: testsecret
AWS_DEFAULT_REGION: us-east-2
S3_BUCKET: testbucket
ENDPOINT: http://localhost:4566
run: |
python write_test_config.py
sudo python -m unittest -v