https://git.reactos.org/?p=reactos.git;a=commitdiff;h=239266640f9f67de6380a…
commit 239266640f9f67de6380a1198faa8587fe787b49
Author: Victor Perevertkin <victor.perevertkin(a)reactos.org>
AuthorDate: Tue May 4 01:32:21 2021 +0300
Commit: Victor Perevertkin <victor.perevertkin(a)reactos.org>
CommitDate: Tue May 4 01:32:21 2021 +0300
[GITHUB] Use full paths on build-linux, as RosBE.sh overwrites them
Addendum to 167c60a5c8c20cb0e58c78ff1449e5c220208c16 and
823ddc3d82b8a6d035c699d9366cf95cc7f94f8f
---
.github/workflows/build.yml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2d835a6db83..cade6ce5644 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -53,13 +53,11 @@ jobs:
echo "CCACHE_SLOPPINESS=time_macros" >> $GITHUB_ENV
echo
"CCACHE_COMPILERCHECK=string:${{hashfiles('./build_rosbe_ci.sh',
'./RosBE-CI/git-commit')}}" >> $GITHUB_ENV
- name: Configure
- run: echo 'cmake -S src -B build -G Ninja
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-${{matrix.compiler}}.cmake
-DARCH:STRING=${{matrix.arch}} -DENABLE_CCACHE=1 -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1
-DCLANG_VERSION=${{env.LLVM_VERSION}}' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0
${{matrix.arch}}
+ run: echo 'cmake -S ${{github.workspace}}/src -B ${{github.workspace}}/build -G
Ninja -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-${{matrix.compiler}}.cmake
-DARCH:STRING=${{matrix.arch}} -DENABLE_CCACHE=1 -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1
-DCLANG_VERSION=${{env.LLVM_VERSION}}' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0
${{matrix.arch}}
- name: Build
- working-directory: ${{github.workspace}}/build
- run: echo 'cmake --build .' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0
${{matrix.arch}}
+ run: echo 'cmake --build ${{github.workspace}}/build' |
${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
- name: Generate ISOs
- working-directory: ${{github.workspace}}/build
- run: echo 'cmake --build . --target bootcd --target livecd' |
${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
+ run: echo 'cmake --build ${{github.workspace}}/build --target bootcd --target
livecd' | ${{github.workspace}}/RosBE-CI/RosBE.sh . 0 ${{matrix.arch}}
- name: Print ccache statistics
run: ccache -s
- name: Upload bootcd