Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh authored Sep 25, 2022
1 parent aec7735 commit 577c63c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ env:
jobs:
# Cancel previous workflow runs.
cancel:
uses: lf-lang/lingua-franca/.github/workflows/cancel.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/cancel.yml@master

# Test the Maven build.
build:
uses: lf-lang/lingua-franca/.github/workflows/build.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/build.yml@master
needs: cancel

# Run the unit tests.
unit-tests:
uses: lf-lang/lingua-franca/.github/workflows/unit-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/unit-tests.yml@master
needs: cancel

# Run tests for the standalone compiler.
# TODO: Change this back to master branch once merged!
cli-tests:
uses: lf-lang/lingua-franca/.github/workflows/cli-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/cli-tests.yml@master
needs: cancel

# Run the C benchmark tests.
Expand All @@ -45,22 +45,22 @@ jobs:

# Run tests for Eclipse.
eclipse-tests:
uses: lf-lang/lingua-franca/.github/workflows/eclipse-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/eclipse-tests.yml@master
needs: cancel

# Run language server tests.
lsp-tests:
uses: lf-lang/lingua-franca/.github/workflows/lsp-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/lsp-tests.yml@master
needs: cancel

# Run the C integration tests.
c-tests:
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@master
needs: cancel

# Run the CCpp integration tests.
ccpp-tests:
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@master
with:
use-cpp: true
needs: cancel
Expand All @@ -74,22 +74,22 @@ jobs:

# Run the C++ integration tests.
cpp-tests:
uses: lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@master
needs: cancel

# Run the C++ integration tests on ROS2.
cpp-ros2-tests:
uses: lf-lang/lingua-franca/.github/workflows/cpp-ros2-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/cpp-ros2-tests.yml@master
needs: cancel

# Run the Python integration tests.
py-tests:
uses: lf-lang/lingua-franca/.github/workflows/py-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/py-tests.yml@master
needs: cancel

# Run the Rust integration tests.
rs-tests:
uses: lf-lang/lingua-franca/.github/workflows/rs-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/rs-tests.yml@master
needs: cancel

# Run the Rust benchmark tests.
Expand All @@ -101,10 +101,10 @@ jobs:

# Run the TypeScript integration tests.
ts-tests:
uses: lf-lang/lingua-franca/.github/workflows/ts-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/ts-tests.yml@master
needs: cancel

# Run the serialization tests
serialization-tests:
uses: lf-lang/lingua-franca/.github/workflows/serialization-tests.yml@formatting-for-dev-workflow
uses: lf-lang/lingua-franca/.github/workflows/serialization-tests.yml@master
needs: cancel

0 comments on commit 577c63c

Please sign in to comment.