Skip to content

Commit

Permalink
Fix actions CI ✨ (#83)
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <louise@openrobotics.org>
  • Loading branch information
chapulina authored and mjcarroll committed Oct 14, 2020
1 parent b10d2e6 commit 703525c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 20 deletions.
5 changes: 3 additions & 2 deletions .github/ci-bionic/after_make.sh → .github/ci/after_make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

set -x

BUILD_DIR=`pwd`

# Install
make install

Expand All @@ -12,5 +14,4 @@ cd build
cmake ..
make

# return to the compilation place
cd ../../build
cd $BUILD_DIR
13 changes: 13 additions & 0 deletions .github/ci/packages.apt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
libavcodec-dev
libavdevice-dev
libavformat-dev
libavutil-dev
libfreeimage-dev
libgts-dev
libignition-cmake2-dev
libignition-math6-dev
libswscale-dev
libtinyxml2-dev
pkg-config
ruby-ronn
uuid-dev
18 changes: 0 additions & 18 deletions .github/workflows/ci-bionic.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Ubuntu CI

on: [push]

jobs:
bionic-ci:
runs-on: ubuntu-latest
name: Ubuntu Bionic CI
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Compile and test
id: ci
uses: ignition-tooling/action-ignition-ci@master
with:
codecov-token: ${{ secrets.CODECOV_TOKEN }}
focal-ci:
runs-on: ubuntu-latest
name: Ubuntu Focal CI
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Compile and test
id: ci
uses: ignition-tooling/action-ignition-ci@focal
with:
codecov-token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 703525c

Please sign in to comment.