File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
yum update gcc
4
4
yum update libstdc++
5
+ export CXXFLAGS=" -D_GLIBCXX_USE_CXX11_ABI=1"
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ permissions:
19
19
20
20
jobs :
21
21
generate-matrix :
22
- uses : pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
22
+ uses : pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.6
23
23
with :
24
24
package-type : wheel
25
25
os : linux
26
26
test-infra-repository : pytorch/test-infra
27
- test-infra-ref : main
27
+ test-infra-ref : release/2.6
28
28
build :
29
29
needs : generate-matrix
30
30
strategy :
@@ -33,15 +33,15 @@ jobs:
33
33
include :
34
34
- repository : pytorch/tensordict
35
35
smoke-test-script : test/smoke_test.py
36
- post -script : .github/scripts/linux-post -script.sh
36
+ pre -script : .github/scripts/linux-pre -script.sh
37
37
package-name : tensordict
38
38
name : pytorch/tensordict
39
- uses : pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
39
+ uses : pytorch/test-infra/.github/workflows/build_wheels_linux.yml@release/2.6
40
40
with :
41
41
repository : ${{ matrix.repository }}
42
42
ref : " "
43
43
test-infra-repository : pytorch/test-infra
44
- test-infra-ref : main
44
+ test-infra-ref : release/2.6
45
45
build-matrix : ${{ needs.generate-matrix.outputs.matrix }}
46
46
package-name : ${{ matrix.package-name }}
47
47
smoke-test-script : ${{ matrix.smoke-test-script }}
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ def get_extensions():
108
108
"-O3" ,
109
109
"-std=c++17" ,
110
110
"-fdiagnostics-color=always" ,
111
+ # "-D_GLIBCXX_USE_CXX11_ABI=0",
111
112
]
112
113
}
113
114
debug_mode = os .getenv ("DEBUG" , "0" ) == "1"
You can’t perform that action at this time.
0 commit comments