diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-04-25 16:05:34 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-04-25 16:05:34 +0200 |
| commit | c853c2e10acdfafee9c6566e9f4f82fba7a9fb9c (patch) | |
| tree | 8f7fd2158abe82439fe77f76c9363b14d20954a1 | |
| parent | cd0b45627f0d8da8c8dc4edde223f3c36e9bcfbf (diff) | |
ci: Fix references to frontend and API modules
This change fixes the references to the frontend and API modules that
were invalidated due to the restructuring of project in the previous
commit.
| -rw-r--r-- | .github/workflows/build-api.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/build-frontend.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build-simulator.yml | 6 |
3 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/build-api.yml b/.github/workflows/build-api.yml index 4ae261db..e863ba05 100644 --- a/.github/workflows/build-api.yml +++ b/.github/workflows/build-api.yml @@ -6,7 +6,7 @@ on: defaults: run: - working-directory: api + working-directory: opendc-web/opendc-web-api jobs: build: @@ -40,6 +40,6 @@ jobs: uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./api/.coverage + files: opendc-web/opendc-web-api/.coverage flags: api diff --git a/.github/workflows/build-frontend.yml b/.github/workflows/build-frontend.yml index 7c1b95a7..e00340ed 100644 --- a/.github/workflows/build-frontend.yml +++ b/.github/workflows/build-frontend.yml @@ -6,7 +6,7 @@ on: defaults: run: - working-directory: frontend + working-directory: opendc-web/opendc-web-ui jobs: build: diff --git a/.github/workflows/build-simulator.yml b/.github/workflows/build-simulator.yml index 1bee19bc..ee8f95f2 100644 --- a/.github/workflows/build-simulator.yml +++ b/.github/workflows/build-simulator.yml @@ -4,10 +4,6 @@ on: pull_request: branches: [master] -defaults: - run: - working-directory: simulator - jobs: build: runs-on: ${{ matrix.os }} @@ -56,5 +52,5 @@ jobs: uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./simulator/build/reports/jacoco/report.xml + files: ./build/reports/jacoco/report.xml flags: simulator |
