File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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"
53export 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"
1214export DEVICE_RESOURCE_PATH=" $GITHUB_WORKSPACE /env"
15+
1316make test-py
1417test $( git status --porcelain | wc -l) -eq 0 || { git diff; false ; }
You can’t perform that action at this time.
0 commit comments