Skip to content

Staging immutable caching #2730

Staging immutable caching

Staging immutable caching #2730

Workflow file for this run

name: Stress Test
on:
push:
branches: [ master ]
tags:
- v*
pull_request: {}
schedule:
# run every 2 hours
- cron: '12 */2 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
stress-test:
name: Stress Test
if: ${{ github.repository == 'kopia/kopia' }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
id: go
- name: Stress Test
run: make stress-test
- name: Upload Logs
uses: actions/upload-artifact@v3
with:
name: logs
path: .logs/**/*.log
if-no-files-found: ignore
if: ${{ always() }}