Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracing utils and Zephyr run scripts moved from util folder #1948

Merged
merged 4 commits into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
8 changes: 0 additions & 8 deletions .github/workflows/all-misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@ jobs:
all-platforms: ${{ !github.event.pull_request.draft }}
if: ${{ needs.check-diff.outputs.run_build == 'true' }}

# Build the tools used for processing execution traces
tracing:
needs: check-diff
if: ${{ needs.check-diff.outputs.run_tracing == 'true' }}
uses: ./.github/workflows/build-trace-tools.yml
with:
all-platforms: ${{ !github.event.pull_request.draft }}

# Run tests for the standalone compiler.
cli:
if: ${{ needs.check-diff.outputs.run_misc == 'true' }}
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/build-trace-tools.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/c-zephyr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ jobs:
- name: Run Zephyr smoke tests
run: |
./gradlew core:integrationTest --tests org.lflang.tests.runtime.CZephyrTest.buildZephyr* core:integrationTestCodeCoverageReport
util/RunZephyrTests.sh test/C/src-gen
./.github/scripts/run-zephyr-tests.sh test/C/src-gen
rm -r test/C/src-gen
- name: Run basic tests
run: |
./gradlew core:integrationTest --tests org.lflang.tests.runtime.CZephyrTest.buildBasic* core:integrationTestCodeCoverageReport
util/RunZephyrTests.sh test/C/src-gen
./.github/scripts/run-zephyr-tests.sh test/C/src-gen
rm -r test/C/src-gen
- name: Run concurrent tests
run: |
./gradlew core:integrationTest --tests org.lflang.tests.runtime.CZephyrTest.buildConcurrent* core:integrationTestCodeCoverageReport
util/RunZephyrTests.sh test/C/src-gen
./.github/scripts/run-zephyr-tests.sh test/C/src-gen
rm -r test/C/src-gen
- name: Report to CodeCov
uses: ./.github/actions/report-code-coverage
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/non-target-specific-extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ jobs:
with:
all-platforms: ${{ !github.event.pull_request.draft }}

# Build the tools used for processing execution traces
tracing:
if: ${{ inputs.all || github.event.pull_request.draft }}
uses: ./.github/workflows/build-trace-tools.yml
with:
all-platforms: ${{ !github.event.pull_request.draft }}

# Run tests for the standalone compiler.
cli:
if: ${{ inputs.all || github.event.pull_request.draft }}
Expand Down
102 changes: 0 additions & 102 deletions util/scripts/launch-fedsd.sh

This file was deleted.

2 changes: 0 additions & 2 deletions util/tracing/.gitignore

This file was deleted.

26 changes: 0 additions & 26 deletions util/tracing/README.md

This file was deleted.

Loading