Skip to content

Commit

Permalink
Revert "ci: run test in loop"
Browse files Browse the repository at this point in the history
This reverts commit 7f0577c.
  • Loading branch information
ChrisSchinnerl committed Oct 24, 2024
1 parent a564025 commit 91fc0c6
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,28 @@ on:
- master

jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=30m
- name: Jape Analyzer
uses: SiaFoundation/action-golang-analysis@HEAD
with:
analyzers: |
go.sia.tech/jape.Analyzer@master
directories: |
autopilot
bus bus/client
worker worker/client
flags: |
-japecheck.types=false
test:
needs: analyze
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -35,10 +56,34 @@ jobs:
host port: 3800
mysql version: "8"
mysql root password: test
- name: Test Stores
uses: n8maninger/action-golang-test@v1
with:
args: "-race;-short;-tags=netgo"
- name: Test Stores - MySQL
if: matrix.os == 'ubuntu-latest'
uses: n8maninger/action-golang-test@v1
env:
RENTERD_DB_URI: 127.0.0.1:3800
RENTERD_DB_USER: root
RENTERD_DB_PASSWORD: test
with:
package: "./stores"
args: "-race;-short;-tags=netgo"
- name: Test Integration
uses: n8maninger/action-golang-test@v1
with:
package: "./internal/test/e2e/..."
args: "-failfast;-race;-timeout=60m;-tags=netgo;-run=TestEphemeralAccountSync$;-count=50"
args: "-failfast;-race;-timeout=60m;-tags=netgo"
- name: Test Integration - MySQL
if: matrix.os == 'ubuntu-latest'
uses: n8maninger/action-golang-test@v1
env:
RENTERD_DB_URI: 127.0.0.1:3800
RENTERD_DB_USER: root
RENTERD_DB_PASSWORD: test
with:
package: "./internal/test/e2e/..."
args: "-failfast;-race;-timeout=60m;-tags=netgo"
- name: Build
run: go build -o bin/ -tags='netgo timetzdata' ./cmd/renterd

0 comments on commit 91fc0c6

Please sign in to comment.