What operating systems support x86 using actions?
See original GitHub issueI am doing the following:
name: Python Package using Conda for x86 (32-bit)
on: [workflow_dispatch]
jobs:
build-x86:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9']
max-parallel: 5
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2.1.1
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
architecture: x86
- name: Install dependencies using Miniconda
run: |
conda install conda-build python=${{ matrix.python-version }}
conda install pyyaml
What I am trying to do is use the miniconda installer to get the 32-bit installers so I can build an x86 package. I can’t get the system to build any version of python or OS.
This is the error I get:
Ensuring installer...
Can we use bundled Miniconda?
Can we download a custom installer by URL?
Can we download Miniconda?
Can we download Miniforge?
Error: No installer could be found for the given inputs
Any ideas?
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
18 Best Operating Systems for x86 PCs as of 2022 - Slant.Co
18 Options Considered ; 86. BSD-family. -, UNIX (BSD) ; 84. Haiku. -, BeOS-like ; --. KolibriOS. -, MenuetOS ; --. ReactOS. -,...
Read more >Supported operating systems - AWS Systems Manager
Supported operating systems · Linux · macOS · Raspberry Pi OS (formerly Raspbian) · Windows Server ...
Read more >How to Find the Supported Operating Systems for Intel®...
You can find the supported operating system for Intel® Core™ Processors such as Windows 11*, Windows® 10, OS X*, Linux* OS, and Chrome*...
Read more >Supported clients and devices - Configuration Manager
Supported client OS versions · Windows 11 (starting in Configuration Manager version 2107). Note. You can continue to use Microsoft Endpoint ...
Read more >Supported Platforms and Browsers for IBM Copy Services ...
Recommended Action ; Windows Vista SP2 (x86, x86-64), includes USGCB, No ; Windows XP (x86, x86-64), No ; Windows 7 (x86, x86-64), No...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That should work!
Closing 😃