File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ jobs:
101101
102102 - name : Install conda
103103 uses : conda-incubator/setup-miniconda@v3
104+ if : (runner.os != 'Windows') || ((runner.os == 'Windows') && (runner.arch != 'ARM64'))
104105 with :
105106 # for installation of anaconda-client, required for upload to
106107 # anaconda.org
@@ -114,13 +115,15 @@ jobs:
114115
115116 - name : Inspect conda and install anaconda-client
116117 shell : pwsh
118+ if : (runner.os != 'Windows') || ((runner.os == 'Windows') && (runner.arch != 'ARM64'))
117119 run : |
118120 conda info
119121 conda list
120122 conda install -y anaconda-client
121123
122124 - name : Install anaconda-client (Windows ARM64)
123125 shell : pwsh
126+ if : ((runner.os == 'Windows') && (runner.arch == 'ARM64'))
124127 run : |
125128 python -m pip install pip -U
126129 pip install --only-binary :all: anaconda-client
You can’t perform that action at this time.
0 commit comments