Skip to content

Commit

Permalink
chore(cicd): fix errors affected benchmarks by base update (#69)
Browse files Browse the repository at this point in the history
* chore(cicd): fix errors affected benchmarks by base update

* chore: bootstrap base images
  • Loading branch information
henrylee97 authored Nov 29, 2023
1 parent 8283e9e commit 5cf85ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
- id: find-targets
run: |
{
for base in $(echo ${{ needs.find-updated-bases.outputs.targets }} | jq -r '.[]'); do
for base in $(echo '${{ needs.find-updated-bases.outputs.targets }}' | jq -r '.[]'); do
base=$(echo $base | sed 's/-base//')
ls $base-*
find $base-* -maxdepth 0 -type d
done
} > /tmp/updated-benchmarks.txt
git diff --name-only --diff-filter=ACMR HEAD^ HEAD | grep -e "^OCaml/" -e "^Java/" -e "^C/" -e "^Solidity/" | cut -d '/' -f 1-2 | sort | uniq >> /tmp/updated-benchmarks.txt
Expand Down
1 change: 1 addition & 0 deletions C-base/flex/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ RUN git clone https://github.com/westes/flex.git buggy \
&& git checkout d3de49f84224b18c5287653f20525291b24cc26e \
&& ./autogen.sh \
&& ./configure

1 change: 1 addition & 0 deletions C-base/snort/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ RUN mkdir -p buggy \
&& mv /tmp/src/util.h /workspace/buggy/src/util.h \
&& cd buggy \
&& ./configure

0 comments on commit 5cf85ad

Please sign in to comment.