Skip to content
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

Set the BOCHS_REV environment correctly #7

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
shell: powershell
run: |
mkdir -p artifact/lib
bash -c 'sh prep.sh; cd Bochs/bochs; sh .conf.cpu-msvc;'
bash -c 'BOCHS_REV=$(cat BOCHS_REV) sh prep.sh; cd Bochs/bochs; sh .conf.cpu-msvc;'
cd Bochs/bochs
Start-Process nmake -ErrorAction SilentlyContinue -PassThru -Wait
cp -Verbose cpu/libcpu.a ../../artifact/lib/cpu.lib
Expand All @@ -65,7 +65,7 @@ jobs:
shell: bash
run: |
mkdir -p artifact/lib
sh prep.sh
BOCHS_REV=$(cat BOCHS_REV) sh prep.sh
cd Bochs/bochs
sh .conf.cpu
make -j ${{ env.NB_CPU }} || true
Expand Down