Skip to content

Commit

Permalink
Fixing a test case with an incorrect input
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak committed Aug 1, 2023
1 parent 3e7d72b commit 49c6fa9
Showing 1 changed file with 1 addition and 98 deletions.
99 changes: 1 addition & 98 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ jobs:
with:
exe-path: executable-monitor/test_exit_current_minutes.out
success-line: "LINE_THAT_WILL_NOT_PRINT"
success-exit-code: ${{ env.exitFourMinutes }}
success-exit-code: ${{ env.exitCodeFourMinutes }}
retry-attempts: 10
timeout-seconds: 60

Expand Down Expand Up @@ -627,100 +627,3 @@ jobs:
path: ./FreeRTOS
exclude-submodules: FreeRTOS-Plus/Test/CMock,FreeRTOS/Test/CMock/CMock,FreeRTOS/Test/litani
fail-on-incorrect-version: true

PR-format-check:
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request }}
strategy:
fail-fast: false
matrix:
inputs:
[
{
org: FreeRTOS,
repository: coreHTTP,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: FreeRTOS,
repository: coreJSON,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: FreeRTOS,
repository: coreMQTT,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: FreeRTOS,
repository: corePKCS11,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs,portable"
},
{
org: FreeRTOS,
repository: coreSNTP,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: FreeRTOS,
repository: FreeRTOS-Cellular-Interface,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: aws,
repository: Device-Defender-for-AWS-IoT-embedded-sdk,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: aws,
repository: Device-Shadow-for-AWS-IoT-embedded-sdk,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: aws,
repository: Fleet-Provisioning-for-AWS-IoT-embedded-sdk,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
{
org: aws,
repository: Jobs-for-AWS-IoT-embedded-sdk,
exclude-files: "lexicon.txt",
exclude-dirs: "build,docs",
},
{
org: aws,
repository: ota-for-AWS-IoT-embedded-sdk,
exclude-files: "lexicon.txt",
exclude-dirs: "build,docs",
},
{
org: aws,
repository: SigV4-for-AWS-IoT-embedded-sdk,
exclude-files: lexicon.txt,
exclude-dirs: "build,docs",
},
]
steps:
- uses: actions/checkout@v3
- name: "Clone: ${{ matrix.inputs.repository }}"
uses: actions/checkout@v3
with:
repository: ${{ matrix.inputs.org }}/${{ matrix.inputs.repository }}
ref: main
path: ${{ matrix.inputs.repository }}

- name: "Formatting Check : ${{ matrix.inputs.repository }}"
uses: ./formatting
with:
path: ${{ matrix.inputs.repository }}
exclude-files: ${{ matrix.inputs.exclude-fles}}
exclude-dirs: ${{matrix.inputs.exclude-dirs}}

0 comments on commit 49c6fa9

Please sign in to comment.