-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Louise Poubel <[email protected]>
- Loading branch information
Showing
10 changed files
with
165 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh -l | ||
|
||
set -x | ||
|
||
# Install | ||
make install | ||
|
||
# So ign-tools finds fuel-tools | ||
export IGN_CONFIG_PATH=/usr/local/share/ignition | ||
export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH | ||
|
||
# Compile example | ||
cd ../example | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
cd ../../build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
curl | ||
libcurl4-openssl-dev | ||
libgflags-dev | ||
libignition-cmake2-dev | ||
libignition-common3-dev | ||
libignition-math6-dev | ||
libignition-msgs6-dev | ||
libignition-tools-dev | ||
libjsoncpp-dev | ||
libtinyxml2-dev | ||
libyaml-dev | ||
libzip-dev |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.