Skip to content

Commit

Permalink
env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MAminSFV committed Sep 6, 2024
1 parent c301d4a commit b6d1469
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,28 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: List directory contents
run: ls -la scripts/
- name: Make setup script executable
run: chmod +x ./scripts/setup_ubuntu

- name: Initial Setup
run: |
sudo ./scripts/setup_ubuntu
shell: bash

- name: Build
run: |
mkdir build
cd build
cmake ..
make
- name: Python Test
run: |
# Make a virtualenv
python3 -m venv .env
source .env/bin/activate
pip3 install .
pip3 install pytest
pip3 install numpy
pip3 install drake
python3 -m pytest .
3 changes: 0 additions & 3 deletions scripts/setup_ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
# Main reference: https://github.com/RobotLocomotion/drake-external-examples/blob/main/scripts/setup/linux/ubuntu/jammy/install_prereqs
# Removed some unused dependencies

# Make the script executable
chmod +x "$0"

set -euxo pipefail

apt-get update
Expand Down

0 comments on commit b6d1469

Please sign in to comment.