Skip to content

Commit

Permalink
Divide native builds in triggers and subflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pkriens committed Jun 26, 2023
1 parent 766de53 commit 5092d84
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/subflow-native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,19 @@ jobs:

- name: Run Shell Script
run: |
colima start
./gradlew --parallel compileJava
while true; do
colima status &>/dev/null
if [[ \$? -eq 0 ]]; then
break;
fi
colima start
sleep 5
done
make -C org.alloytools.pardinus.native/satsolvers install
colima stop
- name: Commit and Push Changes
run: |
Expand Down

0 comments on commit 5092d84

Please sign in to comment.