Skip to content

Commit

Permalink
Disable code-check
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Nov 30, 2024
1 parent de58725 commit fbe2640
Showing 1 changed file with 77 additions and 77 deletions.
154 changes: 77 additions & 77 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
@@ -1,77 +1,77 @@
name: code-check
on:
workflow_dispatch:
inputs:
branch:
description: 'LIEF branch'
default: main
required: false
type: string
what:
description: 'clang-tidy action'
default: latest
required: false
type: string
job:
description: 'Job (e.g. coverage)'
default: "all"
required: false
type: string
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
container:
image: liefproject/code-check
env:
LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
steps:
- uses: actions/checkout@v4
with:
repository: lief-project/code-check
token: ${{ secrets.LIEF_CLONE_TOKEN }}
- name: Running LIEF coverage [workflow dispatch]
if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'coverage') }}
run: ./lief-coverage --debug
- name: Running LIEF coverage [regular]
if: ${{ github.event_name != 'workflow_dispatch' }}
run: ./lief-coverage --debug
clang-tidy:
runs-on: ubuntu-latest
container:
image: liefproject/code-check
env:
LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
steps:
- uses: actions/checkout@v4
with:
repository: lief-project/code-check
token: ${{ secrets.LIEF_CLONE_TOKEN }}
- name: Running LIEF coverage [workflow dispatch]
if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'clang-tidy') }}
run: ./lief-tidy --branch ${{ github.event.inputs.branch }} ${{ github.event.inputs.what }}
- name: Running LIEF coverage [regular]
if: "github.event.name != 'workflow_dispatch'"
run: ./lief-tidy latest
memory-profiler:
runs-on: ubuntu-latest
container:
image: liefproject/code-check
env:
LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
steps:
- uses: actions/checkout@v4
with:
repository: lief-project/code-check
token: ${{ secrets.LIEF_CLONE_TOKEN }}
- name: Running LIEF memory profiler [workflow dispatch]
if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'memprof') }}
run: ./lief-memory-profile --branch ${{ github.event.inputs.branch }}
- name: Running LIEF memory profiler [regular]
if: "github.event.name != 'workflow_dispatch'"
run: ./lief-memory-profile
#name: code-check
#on:
# workflow_dispatch:
# inputs:
# branch:
# description: 'LIEF branch'
# default: main
# required: false
# type: string
# what:
# description: 'clang-tidy action'
# default: latest
# required: false
# type: string
# job:
# description: 'Job (e.g. coverage)'
# default: "all"
# required: false
# type: string
# push:
# branches:
# - main
#jobs:
# coverage:
# runs-on: ubuntu-latest
# container:
# image: liefproject/code-check
# env:
# LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
# LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
# steps:
# - uses: actions/checkout@v4
# with:
# repository: lief-project/code-check
# token: ${{ secrets.LIEF_CLONE_TOKEN }}
# - name: Running LIEF coverage [workflow dispatch]
# if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'coverage') }}
# run: ./lief-coverage --debug
# - name: Running LIEF coverage [regular]
# if: ${{ github.event_name != 'workflow_dispatch' }}
# run: ./lief-coverage --debug
# clang-tidy:
# runs-on: ubuntu-latest
# container:
# image: liefproject/code-check
# env:
# LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
# LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
# steps:
# - uses: actions/checkout@v4
# with:
# repository: lief-project/code-check
# token: ${{ secrets.LIEF_CLONE_TOKEN }}
# - name: Running LIEF coverage [workflow dispatch]
# if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'clang-tidy') }}
# run: ./lief-tidy --branch ${{ github.event.inputs.branch }} ${{ github.event.inputs.what }}
# - name: Running LIEF coverage [regular]
# if: "github.event.name != 'workflow_dispatch'"
# run: ./lief-tidy latest
# memory-profiler:
# runs-on: ubuntu-latest
# container:
# image: liefproject/code-check
# env:
# LIEF_S3_KEY: ${{ secrets.LIEF_S3_KEY }}
# LIEF_S3_SECRET: ${{ secrets.LIEF_S3_SECRET }}
# steps:
# - uses: actions/checkout@v4
# with:
# repository: lief-project/code-check
# token: ${{ secrets.LIEF_CLONE_TOKEN }}
# - name: Running LIEF memory profiler [workflow dispatch]
# if: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.job == 'all' || github.event.inputs.job == 'memprof') }}
# run: ./lief-memory-profile --branch ${{ github.event.inputs.branch }}
# - name: Running LIEF memory profiler [regular]
# if: "github.event.name != 'workflow_dispatch'"
# run: ./lief-memory-profile

0 comments on commit fbe2640

Please sign in to comment.