Skip to content

Commit e9828ce

Browse files
committed
fix: install eosim from GitHub Release wheel in all remaining workflows
simulation-test.yml, qemu-test.yml, weekly.yml, nightly.yml, ci.yml, and release-native.yml also referenced eosim from PyPI which doesn't exist.
1 parent 734a900 commit e9828ce

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
with:
192192
python-version: "3.12"
193193
- name: Install EoSim
194-
run: pip install "eosim>=0.1.0"
194+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v0.1.0/eosim-0.1.0-py3-none-any.whl"
195195
- name: Validate platform config
196196
run: eosim validate --platform ${{ matrix.platform }}
197197
- name: Simulate ${{ matrix.platform }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
with:
134134
python-version: "3.12"
135135
- name: Install EoSim
136-
run: pip install "eosim>=${{ env.EOSIM_VERSION }}"
136+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
137137
- name: Validate
138138
run: eosim validate --platform ${{ matrix.platform }}
139139
- name: Simulate

.github/workflows/release-native.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ jobs:
248248
with:
249249
python-version: "3.12"
250250
- name: Install EoSim
251-
run: pip install "eosim>=0.1.0"
251+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v0.1.0/eosim-0.1.0-py3-none-any.whl"
252252
- name: Validate key platforms
253253
run: |
254254
for PLAT in x86_64-linux arm64-linux riscv64-linux stm32f4 raspi4 esp32 nrf52; do

.github/workflows/simulation-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
python-version: "3.12"
5858
- name: Install EoSim
59-
run: pip install "eosim>=${{ env.EOSIM_VERSION }}"
59+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
6060
- name: Validate platform
6161
run: eosim validate --platform ${{ matrix.platform }}
6262
- name: Run simulation
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
python-version: "3.12"
8282
- name: Install EoSim
83-
run: pip install "eosim>=${{ env.EOSIM_VERSION }}"
83+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
8484
- name: Doctor check
8585
run: eosim doctor
8686
- name: Validate all platforms
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
python-version: "3.12"
109109
- name: Install EoSim
110-
run: pip install "eosim>=${{ env.EOSIM_VERSION }}"
110+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
111111
- name: Install build tools
112112
run: sudo apt-get update && sudo apt-get install -y cmake libsdl2-dev
113113
- name: Build eApps

.github/workflows/weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
with:
158158
python-version: "3.12"
159159
- name: Install EoSim
160-
run: pip install "eosim>=${{ env.EOSIM_VERSION }}"
160+
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
161161
- name: Validate
162162
run: eosim validate --platform ${{ matrix.platform }}
163163
- name: Simulate

0 commit comments

Comments
 (0)