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: temp comment cross-compile platform darwin #2999

Merged
Merged
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
6 changes: 3 additions & 3 deletions pipelines/pingcap/tidb-tools/latest/pull_verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pipeline {
sh label: 'Debug info', script: """
printenv
echo "-------------------------"
node -v
go env
echo "-------------------------"
echo "debug command: kubectl -n ${K8S_NAMESPACE} exec -ti ${NODE_NAME} bash"
"""
Expand Down Expand Up @@ -57,8 +57,8 @@ pipeline {
}
stage('Build') {
steps {
sh "GOOS=darwin GOARCH=amd64 make build -C ${REFS.repo}"
sh "GOOS=darwin GOARCH=arm64 make build -C ${REFS.repo}"
// sh "GOOS=darwin GOARCH=amd64 make build -C ${REFS.repo}"
// sh "GOOS=darwin GOARCH=arm64 make build -C ${REFS.repo}"
sh "GOOS=linux GOARCH=arm64 make build -C ${REFS.repo}"
sh "GOOS=linux GOARCH=amd64 make build -C ${REFS.repo}" // be the last order to build, the unit test will use it.
}
Expand Down