Skip to content

use new toolchains for cpp and rust #10

use new toolchains for cpp and rust

use new toolchains for cpp and rust #10

Workflow file for this run

# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
name: Build and test scenarios
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
scenarios-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bazel
uses: bazel-contrib/setup-bazel@0.15.0
with:
bazelisk-version: 1.26.0 # newest LTS before 1 Jun 2025
- name: Run build
run: |
bazel build //... --config=x86_64-linux
- name: Run tests
run: |
bazel test //... --config=x86_64-linux