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 38ba8a2
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,34 @@ env:
BUILD_CONFIGURATION: Release

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

steps:
- name: Install dependencies on ubuntu
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake
ninja --version
cmake --version
gcc --version
- name: Configure
shell: bash
run: |
cd gcc
mkdir build
mkdir instdir
cmake -B build
- name: Build
shell: bash
run: |
cd build
make
- name: Run
shell: bash
run: |
./octree
msvc_build_and_test:
strategy:
matrix:
targetplatform: [x86, x64]
Expand Down

0 comments on commit 38ba8a2

Please sign in to comment.