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

[NOMERG] test 0.7 builds #1210

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

yum update gcc
yum update libstdc++
export CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=1"
10 changes: 5 additions & 5 deletions .github/workflows/build-wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ permissions:

jobs:
generate-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.6
with:
package-type: wheel
os: linux
Copy link

Choose a reason for hiding this comment

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

Pleas add test-infra-ref: release/2.6

test-infra-repository: pytorch/test-infra
test-infra-ref: main
test-infra-ref: release/2.6
build:
needs: generate-matrix
strategy:
Expand All @@ -33,15 +33,15 @@ jobs:
include:
- repository: pytorch/tensordict
smoke-test-script: test/smoke_test.py
post-script: .github/scripts/linux-post-script.sh
pre-script: .github/scripts/linux-pre-script.sh
package-name: tensordict
name: pytorch/tensordict
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@release/2.6
with:
repository: ${{ matrix.repository }}
ref: ""
test-infra-repository: pytorch/test-infra
test-infra-ref: main
test-infra-ref: release/2.6
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
package-name: ${{ matrix.package-name }}
smoke-test-script: ${{ matrix.smoke-test-script }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ def get_extensions():
"-O3",
"-std=c++17",
"-fdiagnostics-color=always",
# "-D_GLIBCXX_USE_CXX11_ABI=0",
]
}
debug_mode = os.getenv("DEBUG", "0") == "1"
Expand Down
Loading