Skip to content

Commit

Permalink
update workflows and fix failing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiBoether committed Sep 12, 2024
1 parent 4e1550d commit c262141
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup mamba
uses: ./.github/actions/mamba
Expand All @@ -72,7 +72,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup mamba
uses: ./.github/actions/mamba
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:

- name: Upload HTML coverage report
if: ${{ matrix.compiler.coverage && matrix.build-type == 'Debug' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage-results
path: ${{github.workspace}}/build/modyn/tests/coverage
Expand All @@ -236,7 +236,7 @@ jobs:
line-coverage: ${{steps.run_main_test_with_coverage.outputs.LINE_COVERAGE}}
branch-coverage: ${{steps.run_main_test_with_coverage.outputs.BRANCH_COVERAGE}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: main

Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup base container
uses: ./.github/actions/base
Expand All @@ -335,7 +335,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start docker compose and exit when tests run through
run: bash scripts/run_integrationtests.sh Debug
Expand All @@ -351,7 +351,7 @@ jobs:
- cpp_build_and_test
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start docker compose and exit when tests run through
run: bash scripts/run_integrationtests.sh Asan
Expand All @@ -368,7 +368,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start docker compose and exit when tests run through
run: bash scripts/run_integrationtests.sh Tsan
Expand All @@ -385,7 +385,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start docker compose and exit when tests run through
run: bash scripts/run_integrationtests.sh Release

0 comments on commit c262141

Please sign in to comment.