Skip to content

CI

CI #783

Workflow file for this run

# Copyright (c) 2020, Massachusetts Institute of Technology.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
---
name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
schedule:
- cron: '0 8 * * *'
jobs:
docker:
name: dockerfile
runs-on: ubuntu-latest
container: russtedrake/manipulation:latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: submodule checkout
run: ./setup/submodule_checkout
shell: bash
- name: post-checkout setup
# Force bazel to use user pip instead of re-downloading everything to
# be hermetic:
run: |
truncate -s0 requirements.txt
sed -i '/PYTHONNOUSERSITE/d' .bazelrc
shell: bash
- name: test
run: ./book/htmlbook/workflows/ci/jammy/test
shell: bash
jammy-pip:
# This should emulate a student's experience if they are doing the psets
# via pip install manipulation.
#
# TODO(russt): Revisit the pip3 install -r requirements.txt below. Maybe I
# need to separate out testing requirements from notebook requirements.
name: pip on jammy
runs-on: ubuntu-22.04
container: ubuntu:22.04
steps:
- name: pre-checkout setup
run: |
apt-get update -o APT::Acquire::Retries=4 -qq
apt-get install -o APT::Acquire::Retries=4 -o Dpkg::Use-Pty=0 -qy --no-install-recommends python3-pip git xvfb
pip3 install manipulation --extra-index-url https://drake-packages.csail.mit.edu/whl/nightly/
shell: bash
- name: checkout
uses: actions/checkout@v2
- name: submodule checkout
run: ./setup/submodule_checkout
shell: bash
- name: post-checkout setup
# Force bazel to use user pip instead of re-downloading everything to
# be hermetic. Also apply patches to avoid bazel dependency on
# installed drake.
run: |
./setup/ubuntu/22.04/install_prereqs.sh
pip3 install -r requirements.txt # poetry does not publish dependency groups https://github.com/python-poetry/poetry/issues/6727
truncate -s0 requirements.txt
sed -i '/PYTHONNOUSERSITE/d' .bazelrc
shell: bash
- name: test
run: DRAKE_RESOURCE_ROOT=`python3 -c "from pathlib import Path; from pydrake.all import GetDrakePath; print(Path(GetDrakePath()).parent)"` MANIPULATION_DATA_DIR="`pwd`/book/data" ./book/htmlbook/workflows/ci/jammy/test_w_installed_deps
shell: bash