Skip to content

Bump google.golang.org/grpc from 1.60.1 to 1.65.0 (#1999) #1

Bump google.golang.org/grpc from 1.60.1 to 1.65.0 (#1999)

Bump google.golang.org/grpc from 1.60.1 to 1.65.0 (#1999) #1

Workflow file for this run

name: Juno Test
on:
push:
branches:
- main
- develop
pull_request:
workflow_dispatch:
jobs:
test:
name: Run Tests
strategy:
fail-fast: false
matrix:
go: [ '1.22.2' ]
os: [ ubuntu-latest, macos-latest, self-hosted-linux-arm64]
runs-on: ${{ matrix.os }}
env:
VM_DEBUG: true
steps:
- uses: actions/checkout@v4
- name: Set up go
uses: actions/[email protected]
with:
go-version-file: go.mod
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
vm/rust
core/rust
starknet/rust
- name: Install deps
run: make install-deps
- name: Install Jemalloc (Ubuntu or self-hosted)
if: runner.os == 'Linux'
run: sudo apt-get update -qq && sudo apt-get install -y libjemalloc-dev libjemalloc2 -y
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: brew install jemalloc
- name: Tests (Coverage)
if: matrix.os == 'ubuntu-latest'
run: make test-cover
- name: Tests (No Coverage)
if: matrix.os != 'ubuntu-latest'
run: make test
# Tests with race condition detector are flaky; we're disabling them for now
# - name: Tests (Race Detection)
# if: matrix.os == 'ubuntu-latest'
# run: make test-race
- name: Benchmark
run: make benchmarks
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: coverage.out