Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/root-ci-config/build_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
CONNECTION = None

WINDOWS = (os.name == 'nt')
WORKDIR = '/tmp/workspace' if not WINDOWS else 'C:/ROOT-CI'
WORKDIR = (os.environ['HOME'] + '/ROOT-CI') if not WINDOWS else 'C:/ROOT-CI'
COMPRESSIONLEVEL = 6 if not WINDOWS else 1


Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/root-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Test Results ${{ matrix.platform }} ${{ matrix.arch }} ${{ matrix.config }}
path: /tmp/workspace/build/TestResults.xml
path: /Users/sftnight/ROOT-CI/build/TestResults.xml


build-windows:
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:

- uses: root-project/gcc-problem-matcher-improved@main
with:
build-directory: /tmp/workspace/src/
build-directory: /github/home/ROOT-CI/src/

- name: Pull Request Build
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Test Results ${{ matrix.image }} ${{ matrix.config }}
path: /tmp/workspace/build/TestResults.xml
path: /github/home/ROOT-CI/build/TestResults.xml

event_file:
if: github.repository_owner == 'root-project' || github.event_name == 'pull_request'
Expand Down