[jssrc2cpg] Improve error handling even further #7803
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: pr | |
| on: pull_request | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Install sbt | |
| if: matrix.os == 'macos-latest' | |
| run: brew install sbt | |
| - name: Install php | |
| if: matrix.os == 'macos-latest' | |
| run: brew install php | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| cache: false | |
| go-version: 1.18 | |
| - name: Set up Swift | |
| if: matrix.os == 'windows-latest' | |
| uses: SwiftyLab/setup-swift@latest | |
| with: | |
| development: true | |
| swift-version: "5.10" | |
| - name: Delete `.rustup` directory | |
| run: rm -rf /home/runner/.rustup # to save disk space | |
| if: runner.os == 'Linux' | |
| - name: Delete `.cargo` directory # to save disk space | |
| run: rm -rf /home/runner/.cargo | |
| if: runner.os == 'Linux' | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.sbt | |
| ~/.coursier | |
| key: ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }} | |
| - name: Compile and run tests | |
| run: sbt clean test | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.sbt | |
| ~/.coursier | |
| key: ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }} | |
| - name: Check formatting | |
| run: sbt scalafmtCheck Test/scalafmtCheck | |
| - run: echo "Previous step failed because code is not formatted. Run 'sbt scalafmt Test/scalafmt'" | |
| if: ${{ failure() }} | |
| - name: Validate CITATION.cff | |
| uses: dieghernan/cff-validator@v3 | |
| test-scripts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.sbt | |
| ~/.coursier | |
| key: ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }} | |
| - run: ./testDistro.sh | |
| - run: | | |
| mkdir /tmp/foo | |
| echo "int foo(int a, int b, int c, int d, int e, int f) {}" > /tmp/foo/foo.c | |
| ./joern --src /tmp/foo --run scan | |
| ./joern-scan /tmp/foo | |
| ./joern-scan --dump | |
| - run: | | |
| mkdir /tmp/slice | |
| ./joern-slice data-flow tests/code/javasrc/SliceTest.java -o /tmp/slice/dataflow-slice-javasrc.json | |
| ./joern --script "./test-dataflow-slice.sc" --param sliceFile=/tmp/slice/dataflow-slice-javasrc.json | grep -q 'List(boolean b, b, this, s, "MALICIOUS", s, new Foo("MALICIOUS"), s, s, "SAFE", s, b, this, this, b, s, System.out)' | |
| - run: | | |
| cd joern-cli/target/universal/stage | |
| ./schema-extender/test.sh |