Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bazelversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.5.0
22 changes: 20 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,45 @@ jobs:
strategy:
matrix:
include:
# Do a singular build for Bazel 4.2.2 to test Bazel 4.2.2.
- os: ubuntu-latest
compiler: gcc
version: 11
bazel: 4.2.2
# Run Bazel 6.5.0 on all compilers versions.
- os: ubuntu-latest
compiler: gcc
version: 9
bazel: 6.5.0
- os: ubuntu-latest
compiler: gcc
version: 10
bazel: 6.5.0
- os: ubuntu-latest
compiler: gcc
version: 11
bazel: 6.5.0
- os: ubuntu-latest
compiler: clang
version: 14
bazel: 6.5.0
steps:
- uses: actions/checkout@v2

# Compile.
- name: Install Bazel 4.2.2
- name: Install Bazel ${{ matrix.bazel }}
uses: abhinavsingh/setup-bazel@v3
with:
version: 4.2.2
version: ${{ matrix.bazel }}

- name: Setup Environment (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
# Just for Github action builds set USE_BAZEL_VERSION to override the
# .bazelversion file so we can test different Bazel versions even though
# the recommended Bazel version will be in the .bazelversion file.
echo "USE_BAZEL_VERSION=${{ matrix.bazel }}" >> $GITHUB_ENV

if [[ "${{ matrix.compiler }}" == "gcc" ]]; then
sudo apt install gcc-${{ matrix.version }} g++-${{ matrix.version }}
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} 100 \
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ One FusionEngine or a Point One device (Atlas, Quectel LG69T, etc.), please cont

#### C++ Support
- C++11 or later
- CMake 3.x or Bazel 3.x
- CMake 3.x or Bazel 4.x-6.x
- Tested with Bazel versions 4.2.2-6.5.0, Bazel 8+ not currently supported
- GCC, Clang, or Microsoft Visual Studio

#### Python Support
Expand Down
Loading