Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/open-gov-2
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Jun 25, 2024
1 parent 27ea745 commit 7175fe9
Show file tree
Hide file tree
Showing 303 changed files with 26,251 additions and 19,003 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ jobs:
- name: upload Docs files
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0
with:
name: github-pages
path: ./target/doc
retention-days: 1

- name: Deploy Docs
# if: github.ref == 'refs/heads/main'
Expand Down
19 changes: 14 additions & 5 deletions .github/workflows/sanity-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@ concurrency:
group: 'tests-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
permissions:
id-token: write
contents: read
id-token: write
contents: read
jobs:
test-n-lint:
name: ${{ matrix.target }}
runs-on: ubuntu-latest-8-cores
strategy:
matrix:
target: [test-general, test-integration,
lint-fmt, lint-clippy, cargo-build, docs-build, lint-taplo]
target: [ test-general, test-integration,
lint-fmt, lint-clippy, cargo-build, docs-build, lint-taplo ]
steps:
- name: Check out code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #4.1.4
with:
submodules: 'recursive'

- name: Prep build
uses: ./.github/actions/prep-ubuntu
Expand All @@ -27,6 +29,10 @@ jobs:
GWIP: ${{ secrets.GWIP_SCCACHE }}
GSA: ${{ secrets.GSA_SCCACHE }}

# Required for integration tests evm interaction
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Runing cargo ${{ matrix.target }}
run: ./ci/run-check.sh
env:
Expand All @@ -38,10 +44,12 @@ jobs:
runs-on: ubuntu-latest #-4-cores
strategy:
matrix:
runtime: [altair, centrifuge]
runtime: [ altair, centrifuge ]
steps:
- name: Check out code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #4.1.4
with:
submodules: 'recursive'

- name: Prep build
uses: ./.github/actions/prep-ubuntu
Expand All @@ -50,6 +58,7 @@ jobs:
GWIP: ${{ secrets.GWIP_SCCACHE }}
GSA: ${{ secrets.GSA_SCCACHE }}


- name: Runing cargo ${{ matrix.target }}
run: ./ci/run-check.sh
env:
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "runtime/integration-tests/submodules/liquidity-pools"]
path = runtime/integration-tests/submodules/liquidity-pools
url = [email protected]:centrifuge/liquidity-pools.git
branch = centrifuge-chain/release-v1.0
Loading

0 comments on commit 7175fe9

Please sign in to comment.