Skip to content

Commit 952471f

Browse files
committed
tools/ci: Disable Jekyll processing on GH Pages.
This is needed to access the the "__future__" package. Signed-off-by: Jos Verlinde <Jos_Verlinde@hotmail.com>
1 parent 0e80b9a commit 952471f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tools/ci.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,12 @@ function ci_push_package_index {
174174

175175
cp -r ${PACKAGE_INDEX_PATH}/* .
176176

177+
# Disable Jekyll processing to avoid excluding files with a _ prefix.
178+
# (e.g. the "__future__" package)
179+
touch ${PAGES_PATH}/.nojekyll
180+
177181
git add .
182+
git -C ${PAGES_PATH} add .nojekyll
178183
git_bot_commit "Add CI built packages from commit ${GITHUB_SHA} of ${GITHUB_REF_NAME}"
179184

180185
if [ "$NEW_BRANCH" -eq 0 ]; then

0 commit comments

Comments
 (0)