Skip to content

Commit

Permalink
chore(cicd): checkout main before finding diff (#17)
Browse files Browse the repository at this point in the history
* fix: checkout main

* fix: fetch main before checking diff

* fix: fetch origin and find diff from origin

* fix: try build in buggy path
  • Loading branch information
henrylee97 authored Nov 8, 2023
1 parent 447a2bd commit e852d8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- id: find-targets
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: find-targets
run: |
git fetch origin
projects=$(git diff --name-only origin/${{ github.base_ref }} origin/${{ github.head_ref }} | grep -e "^OCaml/" -e "^Java/" -e "^C/" -e "^Solidity/" | cut -d '/' -f 1-2 | sort | uniq | xargs -I{prj} echo \"{prj}\" | tr '\n' ',' | sed 's/,*$//')
echo "targets=[$projects]" >> ${GITHUB_OUTPUT}
Expand Down Expand Up @@ -45,6 +46,7 @@ jobs:
run: |
content=$(cat ${{ matrix.target }}/metadata.json)
content="${content//$'\n'/''}"
echo "location=$(echo $content | jq -r .buggyPath)" >> ${GITHUB_OUTPUT}
echo "buildCommand=$(echo $content | jq -r .buildCommand)" >> ${GITHUB_OUTPUT}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
Expand All @@ -56,4 +58,4 @@ jobs:
tags: benchmark:latest
- name: Smoke test
run: |
docker run --rm benchmark:latest ${{ steps.read-metadata.outputs.buildCommand }}
docker run --rm benchmark:latest /bin/bash -c "cd ${{ steps.read-metadata.outputs.location }}; ${{ steps.read-metadata.outputs.buildCommand }}"

0 comments on commit e852d8a

Please sign in to comment.