Skip to content

Commit

Permalink
Add fetch depth zero to everything to fix bug introduced in #2766 (#2773
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Christewart committed Mar 8, 2021
1 parent 24cf709 commit 0faf6b9
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/Compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.12_App_Chain_Node_Core_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.12_KeyManager_Wallet_DLC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.12_RPC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.13_App_Chain_Node_Core_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.13_KeyManager_Wallet_DLC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.13_RPC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Linux_2.13_ScalaJS_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Mac_2.13_RPC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Mac_2.13_Wallet_Node_DLC_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/PostgresTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Secp_Disabled_Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
shell: bash
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
uploaded_filename: bitcoin-s-cli-x86_64-pc-win32.exe
local_path: app\cli\target\native-image\bitcoin-s-cli.exe
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v10
- run: git fetch --tags || true
- run: sbt cli/nativeImage
Expand Down

0 comments on commit 0faf6b9

Please sign in to comment.