Skip to content

Commit

Permalink
Turn tests back on
Browse files Browse the repository at this point in the history
  • Loading branch information
gmagnu committed Dec 24, 2024
1 parent eab7272 commit bf48981
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
test:
runs-on: ubuntu-latest
needs: build
if: false
#if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -58,7 +58,6 @@ jobs:
slowTest:
runs-on: ubuntu-latest
needs: build
if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -90,7 +89,6 @@ jobs:
integrationTest:
runs-on: ubuntu-latest
needs: build
if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -120,7 +118,7 @@ jobs:
path: '**/TEST-*.xml'

testReport:
#needs: [test, slowTest, integrationTest]
needs: [test, slowTest, integrationTest]
runs-on: ubuntu-latest
if: always()
steps:
Expand All @@ -145,9 +143,10 @@ jobs:
files: '**/TEST-*.xml'

publishSnapshot:
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/ENGKNOW-1855-object-store-performance' }}
#needs: [test, slowTest, integrationTest]
needs: [build]
#if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/ENGKNOW-1855-object-store-performance' }}
if: ${{ github.ref == 'refs/heads/main' }}
needs: [test, slowTest, integrationTest]
#needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit bf48981

Please sign in to comment.