Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix platform type #1681

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try poetry lock
  • Loading branch information
inbalapt1 committed Jan 8, 2025
commit 98ca5dc22cf6692f1f94aa2a18c180cf2700eabe
4 changes: 2 additions & 2 deletions .gitlab/ci/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
CURRENT_BRANCH_NAME: "append-graph-to-content-docs"
CURRENT_BRANCH_NAME: $INFRA_BRANCH

include:
- file: "/.gitlab/ci/content-docs/.gitlab-ci.yml"
ref: "append-graph-to-content-docs"
ref: $INFRA_BRANCH
project: "${CI_PROJECT_NAMESPACE}/infra"
4 changes: 2 additions & 2 deletions content-repo/gendocs.py
Original file line number Diff line number Diff line change
@@ -913,8 +913,8 @@ def main():
parser.add_argument("-d", "--dir", type=os.path.normpath, help="Content repo dir.", required=True)
parser.add_argument("-b", "--branch", help="Content repo branch.", required=True)
args = parser.parse_args()
dict_item_to_marketplaces = get_all_content_items_ids_to_marketplaces()
print(f"{dict_item_to_marketplaces=}")
# dict_item_to_marketplaces = get_all_content_items_ids_to_marketplaces()
# print(f"{dict_item_to_marketplaces=}")
print(f'Using multiprocess pool size: {POOL_SIZE}')
print('Starting MDX server...')
start_mdx_server()
Loading
Loading