diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d130a5a4..c1ad6345 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -34,7 +34,7 @@ jobs: path: 'Dependencies/beta-build-num' fetch-depth: 1 - - name: Setup + - name: Setup Env run: | BUILD_NUM=$(python3 scripts/ci/workflow.py reserve_build_number 'Dependencies/beta-build-num') MARKETING_VERSION=$(python3 scripts/ci/workflow.py get-marketing-version) diff --git a/scripts/ci/workflow.py b/scripts/ci/workflow.py index d9200339..5567e8c4 100644 --- a/scripts/ci/workflow.py +++ b/scripts/ci/workflow.py @@ -104,13 +104,6 @@ def reserve_build_number(repo, max_attempts=5): write(data) run("git add version.json", check=False, cwd=repo) - - print("---- DEBUG reserve_build_number ----", file=sys.stderr) - print(f"attempt: {attempt}", file=sys.stderr) - print(f"data: {data!r}", file=sys.stderr) - print(version_json.read_text(), file=sys.stderr) - print("------------------------------------", file=sys.stderr) - run(f"git commit -m '{data['tag']} - build no: {data['build']}' || true", check=False, cwd=repo) rc = subprocess.call("git push", shell=True, cwd=repo)