8000 gh-111062: Reusable Ubuntu build that supports free-threaded mode as the conditional CI by NCLI · Pull Request #111452 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111062: Reusable Ubuntu build that supports free-threaded mode as the conditional CI #111452

New issue 8000

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

Merged
merged 29 commits into from
Oct 30, 2023
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6c35a89
initial draft of no-gil CI/CD workflow
NCLI Oct 29, 2023
c35d2ce
Moved to reusable ubuntu workflow.
NCLI Oct 29, 2023
0ad8938
Disabled additional test
NCLI Oct 29, 2023
05166b6
Fixed workflow reference
NCLI Oct 29, 2023
ce06c53
Fixed syntax issue for ubuntu_version.
NCLI Oct 29, 2023
3d0ab04
Fixed syntax issue for ubuntu_version.
NCLI Oct 29, 2023
f1f0ff3
Fixed syntax issue for ubuntu_version v3.
NCLI Oct 29, 2023
5fd16f5
Fixed syntax issue for ubuntu_version v4.
NCLI Oct 29, 2023
6f11e3a
Fixed test run condition.
NCLI Oct 29, 2023
e2d21b0
Fixed test run condition v2
NCLI Oct 29, 2023
badb818
Removed needs from reusable workflow
NCLI Oct 29, 2023
01af84a
Moved needs back to build.yml
NCLI Oct 29, 2023
1cb1f77
Fixed conditional
NCLI Oct 29, 2023
7949d22
Set ubuntu version
NCLI Oct 29, 2023
6d05b08
Reordered variables
NCLI Oct 29, 2023
fd24bcc
Merge branch 'main' into reusable_ubuntu_build
NCLI Oct 29, 2023
f57f1c3
Remove drequirement for ubuntu_version
NCLI Oct 29, 2023
3e19889
Ubuntu build test with GIL disabled - first pass
NCLI Oct 29, 2023
5cb40bb
Added changes to the reusable workflow
NCLI Oct 29, 2023
e611636
Reenabled all tests, fixed import
NCLI Oct 29, 2023
65e38f3
Evaluate input variable
NCLI Oct 29, 2023
3225b9b
Evaluate input variable
NCLI Oct 29, 2023
5dd7c5e
Merge branch 'main' into reusable_ubuntu_build_nogil
NCLI Oct 29, 2023
12c9def
Update .github/workflows/build.yml
NCLI Oct 29, 2023
6d36072
Update .github/workflows/build.yml
NCLI Oct 29, 2023
adf483b
Update .github/workflows/build.yml
NCLI Oct 29, 2023
8cffab1
Update .github/workflows/build.yml
NCLI Oct 29, 2023
26ec9b9
Update .github/workflows/build.yml
corona10 Oct 29, 2023
acdbec2
Update .github/workflows/build.yml
corona10 Oct 29, 2023
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
Update .github/workflows/build.yml
Co-authored-by: Donghee Na <donghee.na92@gmail.com>
  • Loading branch information
NCLI and corona10 authored Oct 29, 2023
commit adf483b67927ae25a5fda559a8d985c597ebaeaf
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
--with-openssl=$OPENSSL_DIR

build_ubuntu_free_threaded:
name: 'Ubuntu GIL disabled'
name: 'Ubuntu (free-threaded)'
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should check that the label is attached or not.

uses: ./.github/workflows/reusable-build-ubuntu.yml
Expand Down
0