-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch CI to run in VM instead docker container
- Loading branch information
1 parent
43767bd
commit 57cbd27
Showing
2 changed files
with
27 additions
and
34 deletions.
There are no files selected for viewing
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 @@ | ||
#!/usr/bin/env bash | ||
source /etc/lsb-release | ||
|
||
# TODO: Add setup for Ubuntu 20.04 | ||
if [ "$DISTRIB_RELEASE" == "18.04" ]; then | ||
sudo apt-get install -y git build-essential cmake python3 python3-setuptools python3-pip python3-venv valgrind doxygen | ||
else | ||
echo "Unsupported Operating System: $DISTRIB_DESCRIPTION" | ||
exit 1 | ||
fi | ||
|
||
pip3 --no-cache-dir install fprime-tools==2.0.2 fprime-gds==2.0 |
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