-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
CircleCI -> Azure #22992
Merged
Merged
CircleCI -> Azure #22992
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0c25578
circle -> azure
TomAugspurger 799cbea
Update docs
TomAugspurger 10b5988
update locale setting
TomAugspurger 72ab6b6
all yaml
TomAugspurger 80f374c
Ignore error
TomAugspurger 31d2aea
Try fix upload
TomAugspurger 8141ee4
locale-gen, results
TomAugspurger a711e27
update test data location
TomAugspurger c315e19
fixed quoting
TomAugspurger a74ce98
try sudo?
TomAugspurger 0f7ce80
try without dpkg
TomAugspurger e4e46ed
Merge remote-tracking branch 'upstream/master' into drop-circle
TomAugspurger 74f4dcc
Restore one
TomAugspurger 608ba04
36 -> 37
TomAugspurger 5fc0d96
move to circle
TomAugspurger 73c2413
Merge remote-tracking branch 'upstream/master' into drop-circle
TomAugspurger 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 was deleted.
Oops, something went wrong.
This file contains 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 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 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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,56 @@ | ||
parameters: | ||
name: '' | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
strategy: | ||
maxParallel: 11 | ||
matrix: | ||
py27_np_19: | ||
ENV_FILE: ci/azure-27-compat.yaml | ||
CONDA_PY: "27" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
|
||
py36_locale: | ||
ENV_FILE: ci/azure-36-locale.yaml | ||
CONDA_PY: "36" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
LOCALE_OVERRIDE: "zh_CN.UTF-8" | ||
|
||
py36_locale_slow: | ||
ENV_FILE: ci/azure-36-locale_slow.yaml | ||
CONDA_PY: "36" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--only-slow --skip-network" | ||
|
||
steps: | ||
- script: | | ||
if [ "$(uname)" == "Linux" ]; then sudo apt-get install -y libc6-dev-i386; fi | ||
echo "Installing Miniconda"{ | ||
ci/incremental/install_miniconda.sh | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
echo "Setting up Conda environment" | ||
ci/incremental/setup_conda_environment.sh | ||
displayName: 'Before Install' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/incremental/build.sh | ||
displayName: 'Build' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/script_single.sh | ||
ci/script_multi.sh | ||
echo "[Test done]" | ||
displayName: 'Test' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
source activate pandas && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFiles: 'test-data-*.xml' | ||
testRunTitle: 'Linux' | ||
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
GH wants a \n here