-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CI: clean azure pipeline #38636
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
Closed
Closed
CI: clean azure pipeline #38636
Changes from 30 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
4912eb1
CI: use conda from ci
80c751e
CI: use conda from ci
b0ff882
CI: use conda from ci
7e685e8
CI: use conda from ci
0371e8f
CI: use conda from ci
2fe866a
CI: use conda from ci
e54d80b
CI: use conda from ci
079bb27
CI: use conda from ci
bd1af56
CI: use conda from ci
f323354
CI: use conda from ci
7c29e8b
CI: use conda from ci
ea745b1
CI: use conda from ci
bc95cde
CI: use conda from ci
c78dc47
CI: use conda from ci
c2ee4a3
CI: use conda from ci
fdb081b
CI: use conda from ci
2be2ae7
CI: use conda from ci
1b50515
CI: use conda from ci
2a4285d
Merge remote-tracking branch 'upstream/master' into refactor-azure-ci
fangchenli 37a287a
rebase
fangchenli fda6a84
fix build commend
fangchenli a7a01d8
fix env commend
fangchenli f0f9b47
fix env commend
fangchenli 144c50d
fix env commend
fangchenli 2c8813f
update vmimage version
fangchenli bde28ca
fix windows
fangchenli 14b5cb7
fix windows
fangchenli 61932dd
fix windows
fangchenli a92dbf6
str
fangchenli 025d125
Merge remote-tracking branch 'upstream/master' into refactor-azure-ci
fangchenli 8a61398
resolve conflict
fangchenli 6f73e01
resolve conflict
fangchenli 49cefe9
Merge remote-tracking branch 'upstream/master' into refactor-azure-ci
fangchenli 2d32a50
resolve conflict
fangchenli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
parameters: | ||
name: '' | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
strategy: | ||
matrix: | ||
py37_macos: | ||
ENV_FILE: ci/deps/azure-macos-37.yaml | ||
CONDA_PY: "37" | ||
PATTERN: "not slow and not network" | ||
|
||
steps: | ||
- bash: echo '##vso[task.prependpath]$CONDA/bin' | ||
displayName: Add conda to PATH | ||
|
||
- bash: sudo chown -R $USER $CONDA | ||
displayName: Take ownership of conda installation | ||
|
||
- bash: conda update --quiet --yes conda | ||
displayName: Update conda | ||
|
||
- bash: conda env create --quiet --file $(ENV_FILE) | ||
displayName: Create Anaconda environment | ||
|
||
- bash: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate pandas-dev | ||
conda list | ||
python setup.py build_ext -q -j 4 | ||
python -m pip install -e . --no-build-isolation --no-use-pep517 | ||
displayName: Build pandas | ||
|
||
- bash: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate pandas-dev | ||
ci/run_tests.sh | ||
displayName: Test | ||
|
||
- bash: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate pandas-dev | ||
python -c "import pandas; pandas.show_versions();" | ||
displayName: Build versions | ||
|
||
- task: PublishTestResults@2 | ||
condition: succeededOrFailed() | ||
inputs: | ||
failTaskOnFailedTests: true | ||
testResultsFiles: 'test-data.xml' | ||
testRunTitle: ${{ format('{0}-$(CONDA_PY)', parameters.name) }} | ||
displayName: Publish test results | ||
|
||
- bash: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate pandas-dev | ||
python ci/print_skipped.py | ||
displayName: Print skipped tests |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fangchenli can any of this be split off into an easy preliminary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#42419