Skip to content

Commit 56cec97

Browse files
committed
Update per comments.
Signed-off-by: Keith Rothman <[email protected]>
1 parent 054d435 commit 56cec97

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.7', '3.8']
11+
python-version: ['3.7', '3.8', '3.9']
1212
steps:
1313

1414
- uses: actions/checkout@v1
@@ -22,8 +22,6 @@ jobs:
2222

2323
- name: Install
2424
run: |
25-
sudo apt-get update
26-
sudo apt-get install clang-format-5.0 xsltproc git
2725
pip install --upgrade -r requirements.txt
2826
2927
- name: Check formatting

.github/workflows/test.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
#!/bin/bash
22

3-
export CAPNP_PATH="$GITHUB_WORKSPACE/env/capnproto-java/compiler/src/main/schema/"
4-
export INTERCHANGE_SCHEMA_PATH="$GITHUB_WORKSPACE/env/RapidWright/interchange"
53
export RAPIDWRIGHT_PATH="$GITHUB_WORKSPACE/env/RapidWright"
64

75
# Create the device resource for the test part.
8-
pushd "$GITHUB_WORKSPACE/env" && \
9-
"$RAPIDWRIGHT_PATH/scripts/invoke_rapidwright.sh" \
6+
pushd "$GITHUB_WORKSPACE/env"
7+
"$RAPIDWRIGHT_PATH/scripts/invoke_rapidwright.sh" \
108
com.xilinx.rapidwright.interchange.DeviceResourcesExample \
11-
xc7a50tfgg484-1 && popd
9+
xc7a50tfgg484-1
10+
popd
11+
12+
export CAPNP_PATH="$GITHUB_WORKSPACE/env/capnproto-java/compiler/src/main/schema/"
13+
export INTERCHANGE_SCHEMA_PATH="$GITHUB_WORKSPACE/env/RapidWright/interchange"
1214
export DEVICE_RESOURCE_PATH="$GITHUB_WORKSPACE/env"
15+
1316
make test-py
1417
test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; }

0 commit comments

Comments
 (0)