Skip to content

Commit

Permalink
Update CI and reporting
Browse files Browse the repository at this point in the history
- Changed to Ubuntu 18.04 Bionic
- Reporting nasa/cFS status
- Unneeded 32 bit libraries
- Removed duplicate steps
  • Loading branch information
skliper committed Oct 1, 2019
1 parent 28384bf commit 703d617
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
20 changes: 8 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist: xenial
dist: bionic
sudo: required
language:
- c
Expand All @@ -10,25 +10,21 @@ addons:
- ubuntu-toolchain-r-test
packages:
- cmake
- gcc-multilib
- g++-multilib

before_install:
# needed for compiling 32bit software on 64bit machine
- sudo apt-get install gcc-multilib g++-multilib cppcheck
- sudo apt-get install cppcheck

script:
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib32/:/usr/lib/gcc/x86_64-linux-gnu/7/x32/
- ls /usr/lib32/
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
# Run your build commands next
- git submodule init
- git submodule update
# Check versions
- cppcheck --version
# Setup standard build
- cp cfe/cmake/Makefile.sample Makefile
- cp -r cfe/cmake/sample_defs sample_defs
# Static code analysis
- cppcheck --force .
# Prep and build
- make prep
- make
- make install
# List cpu1 for core binary
- ls build/exe/cpu1/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Auto build status: [![Build Status](https://travis-ci.com/travis-r-wheatley/cFS.svg?branch=master)](https://travis-ci.com/travis-r-wheatley/cFS)
Travis-CI: [![Build Status](https://travis-ci.com/nasa/cFS.svg)](https://travis-ci.com/nasa/cFS)

# Core Flight System - BUNDLE

Expand Down

0 comments on commit 703d617

Please sign in to comment.