Skip to content

Modified and reimplemented FastLanes library in C #29764

Modified and reimplemented FastLanes library in C

Modified and reimplemented FastLanes library in C #29764

Workflow file for this run

# Check our codebase for defective programming patterns
name: Coccinelle
"on":
pull_request:
push:
branches:
- main
- ?.*.x
jobs:
coccinelle:
name: Coccinelle
# coccinelle version in ubuntu-latest (20.04) is too old so we run
# this in jammy (22.04)
runs-on: ubuntu-22.04
steps:
- name: Install Linux Dependencies
timeout-minutes: 15
run: |
sudo apt-get update
sudo apt-get -y install coccinelle
- name: Checkout TimescaleDB
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run coccinelle
run: |
./scripts/coccinelle.sh
- name: Save coccinelle.diff
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coccinelle.diff
path: coccinelle.diff