Skip to content

build(deps): bump serde from 1.0.204 to 1.0.210 #687

build(deps): bump serde from 1.0.204 to 1.0.210

build(deps): bump serde from 1.0.204 to 1.0.210 #687

Workflow file for this run

name: Bazel build
on:
pull_request:
paths-ignore:
# ignore markdown files (CHANGELOG.md, README.md, etc.)
- '**/*.md'
push:
paths-ignore:
# ignore markdown files (CHANGELOG.md, README.md, etc.)
- '**/*.md'
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
tests:
name: Tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Build
run: bazel build :atc_router --verbose_failures
- name: Ensure `ffi` feature is present (Linux)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: readelf -Ws --dyn-syms bazel-bin/libatc_router.so | grep router_execute
- name: Ensure `ffi` feature is present (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: nm -gU bazel-bin/libatc_router.dylib | grep router_execute