Skip to content

Commit

Permalink
ci: fixed checks workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmillennick committed Feb 4, 2025
1 parent 8beb18a commit 90568e6
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions .github/workflows/checks-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -371,53 +371,53 @@ jobs:
forge test --fork-url https://ethereum-sepolia-rpc.publicnode.com -vv
"
# any use of Move CLI requires ubuntu-24.04 and to not run on buildjet
bridge-client-integration:
if: github.event.label.name == 'cicd:bridge' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/trusted-relayer'
strategy:
matrix:
include:
- os: ubuntu-24.04
arch: x86_64
runs-on: ubuntu-24.04
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Movement CLI
run: |
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y binutils
sudo apt-get install -y lld
sudo apt-get install -y libudev-dev
sudo apt-get install -y libdw-dev
which ld
which lld
which gcc
which cc
echo $PATH
export GIT_CLONE_PROTECTION_ACTIVE=false
git clone https://github.com/movementlabsxyz/aptos-core/
cd aptos-core
cargo build -p movement
sudo cp target/debug/movement /usr/local/bin/
cd -
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v15
with:
name: movementlabs
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Run eth_movement tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test client_eth_tests -- --nocapture --test-threads=1"
- name: Run movement_eth tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test client_mvt_tests -- --nocapture --test-threads=1"
- name: Run Relayer tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test relayer -- --nocapture --test-threads=1"
# any use of Move CLI requires ubuntu-24.04 and to not run on buildjet
bridge-client-integration:
if: github.event.label.name == 'cicd:bridge' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/trusted-relayer'
strategy:
matrix:
include:
- os: ubuntu-24.04
arch: x86_64
runs-on: ubuntu-24.04
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Movement CLI
run: |
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y binutils
sudo apt-get install -y lld
sudo apt-get install -y libudev-dev
sudo apt-get install -y libdw-dev
which ld
which lld
which gcc
which cc
echo $PATH
export GIT_CLONE_PROTECTION_ACTIVE=false
git clone https://github.com/movementlabsxyz/aptos-core/
cd aptos-core
cargo build -p movement
sudo cp target/debug/movement /usr/local/bin/
cd -
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v15
with:
name: movementlabs
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Run eth_movement tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test client_eth_tests -- --nocapture --test-threads=1"
- name: Run movement_eth tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test client_mvt_tests -- --nocapture --test-threads=1"
- name: Run Relayer tests
run: |
nix develop --command bash -c "rust_backtrace=1 cargo test --test relayer -- --nocapture --test-threads=1"
# Indexer:
# strategy:
Expand Down

0 comments on commit 90568e6

Please sign in to comment.