Skip to content

Commit c36269f

Browse files
committed
fix: install EoSim from source and use 'eosim run' command
- Switch from wheel install to source install for nested simulation jobs - Replace 'eosim simulate' with 'eosim run' (correct CLI command)
1 parent 814a688 commit c36269f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/eosim-sanity.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: pip install "eosim @ https://github.com/embeddedos-org/EoSim/releases/download/v${{ env.EOSIM_VERSION }}/eosim-${{ env.EOSIM_VERSION }}-py3-none-any.whl"
5656
- name: Simulate ${{ matrix.platform }}
5757
run: |
58-
eosim simulate --platform ${{ matrix.platform }} --duration 10 --headless
58+
eosim run ${{ matrix.platform }} --headless --timeout 10
5959
echo "${{ matrix.platform }}: PASSED"
6060
6161
nested-guest-install:
@@ -82,7 +82,7 @@ jobs:
8282
- name: Boot guest and test EoSim inside
8383
run: |
8484
echo "=== Nested Guest: ${{ matrix.guest }} ==="
85-
eosim simulate --platform ${{ matrix.platform }} --duration 15 --headless --nested-install
85+
eosim run ${{ matrix.platform }} --headless --timeout 15
8686
echo "${{ matrix.guest }}: PASSED"
8787
8888
windows-sanity:

.github/workflows/simulation-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Simulate ${{ matrix.platform }}
4848
run: |
4949
echo "=== EoSim: ${{ matrix.platform }} ==="
50-
eosim simulate --platform ${{ matrix.platform }} --duration 15 --headless
50+
eosim run ${{ matrix.platform }} --headless --timeout 15
5151
continue-on-error: true
5252

5353
cross-platform:

0 commit comments

Comments
 (0)