Skip to content

Commit

Permalink
Fix: for workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Grabt234 committed May 4, 2024
1 parent 393886d commit 8b53c6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CMakeRelease-aarch64-linux-gnu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C++ Build and Release on Linux
name: C++ Build for aarch64-linux-gnu

on:
release:
Expand All @@ -8,7 +8,7 @@ on:
- main

env:
TOOLCHAIN_LOCATION: ../toolchains/RaspberryPiToolchain.cmake
TOOLCHAIN_LOCATION: ../toolchains/aarch64-linux-gnu.cmake

jobs:
build:
Expand All @@ -27,7 +27,7 @@ jobs:
submodules: recursive

- name: Generate CMake Files For Cross Compilation
run: cmake -B build -S . -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_TOOLCHAIN_FILE=${{env.TOOLCHAIN_LOCATION}}
run: cmake -B build -S . -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -D CMAKE_TOOLCHAIN_FILE=${{env.TOOLCHAIN_LOCATION}}

- name: Build
run: make -C build
Expand Down

0 comments on commit 8b53c6f

Please sign in to comment.