Skip to content

Commit

Permalink
More fixes to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Oct 8, 2024
1 parent a418312 commit c89f1eb
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/acl2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install sccache Ubuntu
if: matrix.os == 'ubuntu-latest'
Expand Down Expand Up @@ -109,6 +111,8 @@ jobs:

- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install sccache
run: |
Expand Down Expand Up @@ -165,6 +169,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust Stable
uses: actions-rs/toolchain@v1
Expand All @@ -189,6 +195,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
ref: mainnet

- name: Install sccache
Expand Down Expand Up @@ -257,6 +264,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: true

- name: Install sccache Ubuntu
env:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
SCCACHE_DIR: /home/runner/.cache/sccache
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
submodules: true

- name: Install sccache Ubuntu
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
with:
submodules: true
ref: mainnet

- name: Install sccache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 2

- name: Get changed files
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -98,7 +100,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -146,6 +150,8 @@ jobs:

- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -202,6 +208,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit c89f1eb

Please sign in to comment.