Skip to content

Commit 2008d79

Browse files
Remove dotnet config
1 parent ff77987 commit 2008d79

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

.github/workflows/api-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w -e GITHUB_REF=${{ github.ref }} -e QC_JOB_USER_ID=${{ secrets.QC_JOB_USER_ID }} -e QC_API_ACCESS_TOKEN=${{ secrets.QC_API_ACCESS_TOKEN }} -e QC_JOB_ORGANIZATION_ID=${{ secrets.QC_JOB_ORGANIZATION_ID }}
3030
shell: bash
3131
run: |
32+
rm -rf /global.json
3233
# Build
3334
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Lean.sln
3435
# Run Projects tests

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
path: LeanMaster
2525
ref: 'master'
2626
- name: Build Lean Master
27-
run: dotnet build --verbosity q /p:Configuration=Release /p:WarningLevel=1 LeanMaster/QuantConnect.Lean.sln
27+
run: rm -rf /global.json && dotnet build --verbosity q /p:Configuration=Release /p:WarningLevel=1 LeanMaster/QuantConnect.Lean.sln
2828

2929
- name: Run Benchmarks Master
3030
run: cp run_benchmarks.py LeanMaster/run_benchmarks.py && cd LeanMaster && python run_benchmarks.py /Data && cd ../

.github/workflows/gh-actions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w -e GITHUB_REF=${{ github.ref }} -e PYPI_API_TOKEN=${{ secrets.PYPI_API_TOKEN }} -e ADDITIONAL_STUBS_REPOS=${{ secrets.ADDITIONAL_STUBS_REPOS }} -e QC_GIT_TOKEN=${{ secrets.QC_GIT_TOKEN }}
3131
shell: bash
3232
run: |
33+
rm -rf /global.json
3334
# Add exception
3435
git config --global --add safe.directory /__w/Lean/Lean
3536
# Get Last Commit of the Current Tag

.github/workflows/regression-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w
2828
shell: bash
2929
run: |
30+
rm -rf /global.json
3031
# Build
3132
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Lean.sln
3233
# Run Tests

.github/workflows/report-generator.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w
2828
shell: bash
2929
run: |
30+
rm -rf /global.json
3031
# Build
3132
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Lean.sln
3233
# Run Backtest

.github/workflows/research-regression-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w
2828
shell: bash
2929
run: |
30+
rm -rf /global.json
3031
# install dependencies
3132
pip3 install papermill==2.4.0 clr-loader==0.1.6
3233
# install kernel

.github/workflows/virtual-environments.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
options: --workdir /__w/Lean/Lean -v /home/runner/work:/__w
2828
shell: bash
2929
run: |
30+
rm -rf /global.json
3031
# Build
3132
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Lean.sln && \
3233
# Python Virtual Environment System Packages

0 commit comments

Comments
 (0)