Skip to content

Commit

Permalink
run FS based integration tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aditsachde committed Jul 29, 2024
1 parent 37a38db commit a9d7538
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Integration Test
on: [push]

jobs:
integration-test:
integration-test-s3:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -16,7 +16,7 @@ jobs:
working-directory: integration
run: go test -run ^TestCTIntegration$

hammer-test:
hammer-test-s3:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -28,3 +28,29 @@ jobs:
- name: Run integration test
working-directory: integration
run: go test -timeout 2h -run ^TestCTHammer$ -args -long

integration-test-fs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run integration test
working-directory: integration
run: go test -run ^TestCTFsIntegration$

hammer-test-fs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run integration test
working-directory: integration
run: go test -timeout 2h -run ^TestCTFsHammer$ -args -long

0 comments on commit a9d7538

Please sign in to comment.