Skip to content

Commit

Permalink
gcc_build job
Browse files Browse the repository at this point in the history
  • Loading branch information
attcs committed Mar 8, 2024
1 parent 4d663c8 commit d82a286
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,42 @@ on: [push]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: ./unittests/unittests.sln
CMAKE_FILE_PATH: gcc

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release

jobs:
build:
gcc_build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install dependencies on ubuntu
run: |
sudo apt-get update
sudo apt install libtbb-dev
sudo apt-get install ninja-build cmake
ninja --version
cmake --version
gcc --version
- name: Configure
shell: bash
run: |
mkdir build
mkdir instdir
cmake ${{env.CMAKE_FILE_PATH}} -B build
- name: Build
shell: bash
run: |
make -C build
- name: Run
shell: bash
run: |
./build/octree
msvc_build_and_test:
strategy:
matrix:
targetplatform: [x86, x64]
Expand Down

0 comments on commit d82a286

Please sign in to comment.