Skip to content

crc8: update variants to be capable of calculation from data in chunks #172

crc8: update variants to be capable of calculation from data in chunks

crc8: update variants to be capable of calculation from data in chunks #172

Workflow file for this run

name: "ECLAIR normal"
on: [push]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
ANALYSIS_KIND: normal
jobs:
Analyze:
runs-on: eclairit
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Build and analyze with ECLAIR
run: |
set -eu
./prepare.sh Debug
cd ECLAIR
./analyze.sh "${ANALYSIS_KIND}"
- name: ECLAIR analysis log
if: always()
run: cat ECLAIR_out/ANALYSIS.log
- name: ECLAIR report log
if: always()
run: cat ECLAIR_out/REPORT.log
- name: Upload ECLAIR artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: artifacts
path: ECLAIR_out*/
- name: Upload ECLAIR SARIF
uses: BUGSENG/codeql-action/upload-sarif@v2
with:
sarif_file: ECLAIR_out/reports.sarif
- name: Publish ECLAIR results
env:
WTOKEN: ${{secrets.WTOKEN}}
run: ECLAIR/action_push.sh "${WTOKEN}" ECLAIR_out