-
Notifications
You must be signed in to change notification settings - Fork 215
167 lines (165 loc) · 6.43 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# 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:
jammy:
name: ubuntu 22.04 jammy
runs-on: ubuntu-22.04
container: ubuntu:22.04
steps:
- name: pre-checkout setup
run: |
export APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 DEBIAN_FRONTEND=noninteractive
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 ca-certificates gnupg
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E1DD270288B4E6030699E45FA1715D88E1DF1F24
echo 'deb http://ppa.launchpad.net/git-core/ppa/ubuntu focal main' > /etc/apt/sources.list.d/git.list
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 git
rm -rf /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin /var/lib/apt/lists/* /var/log/apt/*
shell: bash
- name: checkout
uses: actions/checkout@v2
- name: submodule checkout
run: ./setup/submodule_checkout
shell: bash
- name: post-checkout setup
run: ./book/htmlbook/workflows/ci/jammy/setup
shell: bash
- name: test
run: ./book/htmlbook/workflows/ci/jammy/test
shell: bash
monterey:
name: macos monterey 12
runs-on: macos-12
steps:
- name: checkout
uses: actions/checkout@v2
- name: submodule checkout
run: ./setup/submodule_checkout
shell: zsh -efuo pipefail {0}
- name: setup
run: ./book/htmlbook/workflows/ci/monterey/setup
shell: zsh -efuo pipefail {0}
- name: test
run: ./book/htmlbook/workflows/ci/monterey/test
shell: zsh -efuo pipefail {0}
lint:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
- name: black
uses: psf/black@stable
- name: isort
uses: isort/isort-action@master
with:
configuration: "--profile black"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: build the docs
run: |
poetry install --only docs
source .venv/bin/activate
sphinx-build -M html underactuated book/python
shell: bash
- name: Test full poetry install
run: poetry install
docker:
name: dockerfile
runs-on: ubuntu-latest
container: russtedrake/underactuated: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 underactuated.
#
# 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 underactuated --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)"` ./book/htmlbook/workflows/ci/jammy/test_w_installed_deps
shell: bash