Skip to content

Commit

Permalink
build on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
matth-x committed Nov 5, 2023
1 parent 5c420a7 commit bda3423
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build (Ubuntu)

on:
push:
branches:
- master
- develop

pull_request:

jobs:

compile-ubuntu-native:
name: Compile for Ubuntu
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Get compiler toolchain
run: |
sudo apt update
sudo apt install cmake libssl-dev build-essential
- name: Generate CMake files
run: cmake -S . -B ./build
- name: Compile
run: cmake --build ./build -j 16 --target mo_simulator

0 comments on commit bda3423

Please sign in to comment.