Skip to content

Commit d9a06ed

Browse files
committed
Test
1 parent 246e9d2 commit d9a06ed

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
arch: [i386]
1010
config: [Debug]
1111
fail-fast: false
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Get RosBE build specifics
1515
id: get_rosbe_spec
@@ -20,7 +20,7 @@ jobs:
2020
wget https://gist.githubusercontent.com/zefklop/b2d6a0b470c70183e93d5285a03f5899/raw/build_rosbe_ci.sh
2121
- name: Get RosBE
2222
id: get_rosbe
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: RosBE-CI
2626
key: RosBE-CI-${{runner.os}}-${{steps.get_rosbe_spec.outputs.march-sha}}-${{steps.get_rosbe_spec.outputs.git-sha}}-${{hashfiles('./build_rosbe_ci.sh')}}
@@ -40,11 +40,11 @@ jobs:
4040
sudo ./llvm.sh $LLVM_VERSION
4141
echo "D_CLANG_VERSION=-DCLANG_VERSION=$LLVM_VERSION" >> $GITHUB_ENV
4242
- name: Source checkout
43-
uses: actions/checkout@v2
43+
uses: actions/checkout@v4
4444
with:
4545
path: src
4646
- name: Set up cache for ccache
47-
uses: actions/cache@v2
47+
uses: actions/cache@v4
4848
with:
4949
path: ccache
5050
key: ccache-${{matrix.compiler}}-${{matrix.arch}}-${{matrix.config}}-${{github.sha}}
@@ -65,12 +65,16 @@ jobs:
6565
run: echo 'cmake --build ${{github.workspace}}/build -- -k0' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
6666
- name: Generate ISOs
6767
run: echo 'cmake --build ${{github.workspace}}/build --target bootcd --target livecd' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
68+
- name: Generate PC-98 boot floppy
69+
run: echo 'cmake --build ${{github.workspace}}/build --target pc98bootfdd' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
6870
- name: Print ccache statistics
6971
run: ccache -s
7072
- name: Upload ISOs
71-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v4
7274
with:
7375
name: reactos-${{matrix.compiler}}-${{matrix.arch}}-${{matrix.config}}-${{github.sha}}
7476
path: |
7577
build/bootcd.iso
7678
build/livecd.iso
79+
build/PC98/ReactOS-98.IMG
80+
build/RAM/ramcd.iso

0 commit comments

Comments
 (0)