Skip to content

Commit

Permalink
Revert 'CI: retry commands that may segfault'
Browse files Browse the repository at this point in the history
This reverts commit 65e3756
because it is claimed in upstream PR that this
has been fixed:
lightningdevkit#156
  • Loading branch information
siwatanejo committed Mar 15, 2024
1 parent b23c6e8 commit f111d36
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,7 @@ jobs:
run: |
cd ldk-c-bindings
git config --global safe.directory "*"
# this may segfault, so retry several times
for i in 1 2 3 4 5; do
./genbindings.sh ../rust-lightning false && break
done
./genbindings.sh ../rust-lightning false
- name: Set package version
run: |
echo "LDK_GARBAGECOLLECTED_GIT_OVERRIDE=v$NUGET_PACKAGE_VERSION" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -158,10 +155,7 @@ jobs:
run: |
cd ldk-c-bindings
git config --global safe.directory "*"
# this may segfault, so retry several times
for i in 1 2 3 4 5; do
./genbindings.sh ../rust-lightning true && break
done
./genbindings.sh ../rust-lightning true
- name: Set package version
run: |
echo "LDK_GARBAGECOLLECTED_GIT_OVERRIDE=v$NUGET_PACKAGE_VERSION" >> "$GITHUB_ENV"
Expand Down

0 comments on commit f111d36

Please sign in to comment.