commit-test #1188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
name: Sanity checks | |
concurrency: | |
group: 'tests-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test-n-lint: | |
name: ${{ matrix.target }} | |
runs-on: ubuntu-latest-8-cores | |
strategy: | |
matrix: | |
target: [test-integration] | |
# target: [test-general, test-integration, | |
# lint-fmt, lint-clippy, cargo-build, docs-build, lint-taplo] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #3.5.2 | |
with: | |
submodules: 'recursive' | |
- name: Check submodule checkout status | |
id: check-submodule | |
run: | | |
ls -la ./ | |
if [ -d "/home/runner/work/centrifuge-chain/centrifuge-chain/runtime/integration-tests/submodules/liquidity-pools/" ]; then | |
echo "Submodule is checked out." | |
echo "ls -la runtime/integrations/tests/submodules/liquidity-pools" | |
echo "::set-output name=submodule_checked::true" | |
else | |
echo "Submodule is not checked out." | |
echo "::set-output name=submodule_checked::false" | |
exit 1 | |
fi | |
- name: Prep build | |
uses: ./.github/actions/prep-ubuntu | |
with: | |
cache: enabled | |
# Cache needs Google credentials: | |
GWIP: ${{ secrets.GWIP_SCCACHE }} | |
GSA: ${{ secrets.GSA_SCCACHE }} | |
- name: Runing cargo ${{ matrix.target }} | |
run: ./ci/run-check.sh | |
env: | |
TARGET: ${{ matrix.target }} | |
# RUSTC_WRAPPER: "sccache" | |
# SCCACHE_RECACHE: true | |
# benchmark-check: | |
# name: bench-check-${{ matrix.runtime }} | |
# runs-on: ubuntu-latest #-4-cores | |
# strategy: | |
# matrix: | |
# runtime: [altair, centrifuge] | |
# steps: | |
# - name: Check out code | |
# uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #3.5.2 | |
# - name: Prep build | |
# uses: ./.github/actions/prep-ubuntu | |
# with: | |
# cache: enabled | |
# GWIP: ${{ secrets.GWIP_SCCACHE }} | |
# GSA: ${{ secrets.GSA_SCCACHE }} | |
# - name: Runing cargo ${{ matrix.target }} | |
# run: ./ci/run-check.sh | |
# env: | |
# TARGET: benchmark-check | |
# RUNTIME: ${{ matrix.runtime }} | |
# RUSTC_WRAPPER: "sccache" |