File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,14 @@ jobs:
38
38
- name : Vendor sources
39
39
id : vendor
40
40
run : |
41
+ export REV=$(cd .git/duckdb && git rev-parse --short HEAD && cd ../..)
42
+ echo "Updating vendored DuckDB sources to $REV"
41
43
git config --global user.email "[email protected] "
42
44
git config --global user.name "DuckDB Labs GitHub Bot"
43
45
git rm -rf src/duckdb
44
46
python vendor.py --duckdb .git/duckdb
45
47
git add src/duckdb CMakeLists.txt
46
48
rm -rf .git/duckdb
47
- export REV=`git rev-parse --short HEAD`
48
49
git commit -m "Update vendored DuckDB sources to $REV"
49
50
git push --dry-run
50
51
# Check if ahead of upstream branch
58
59
run : |
59
60
git push -u origin HEAD
60
61
62
+ - name : Wait for push to complete
63
+ if : steps.vendor.outputs.vendor != '' && github.event_name != 'pull_request'
64
+ run : sleep 10 # Give GitHub a moment to process the push
65
+
61
66
rebuild :
62
67
needs : vendor
63
68
if : ${{ needs.vendor.outputs.did_vendor != '' }}
You can’t perform that action at this time.
0 commit comments