Fix compressed DML with constraints of form value OP column #15787
Workflow file for this run
This file contains 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
# Check our codebase for defective programming patterns | |
name: Coccinelle | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
- prerelease_test | |
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 Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install coccinelle | |
- name: Checkout TimescaleDB | |
uses: actions/checkout@v4 | |
- name: Run coccinelle | |
run: | | |
./scripts/coccinelle.sh | |
- name: Save coccinelle.diff | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coccinelle.diff | |
path: coccinelle.diff | |