-
Notifications
You must be signed in to change notification settings - Fork 30
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
Add workflow for win #534
Add workflow for win #534
Conversation
condarc: ~/.condarc | ||
conda-bld: /usr/share/miniconda/conda-bld/linux-64/ | ||
- os: windows-latest | ||
pkgs_dirs: C:\Users\runneradmin\.conda\pkgs |
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.
Can we use Windows env variables like %HOMEDRIVE%%HOMEPATH%
to replace hard-coded home path which may change down the road?
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.
There is currently no way to use environment variables here
.github/workflows/conda-package.yml
Outdated
- name: Upload artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} | ||
path: /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.tar.bz2 | ||
name: ${{ env.PACKAGE_NAME }} ${{ matrix.os }} Python ${{ matrix.python }} |
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.
matrix.os = ubuntu-latest
runner.os = Linux
Test job uses runner.os for searching for artifacts.
@1e-to Is this PR still active? Why doesn't the workflow run? |
Added build of dpсtl package to github runner on windows
Tested locally run: 1e-to#4