mv .github/scripts ./
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
1c2a0cfdda
commit
ee0c9008ff
|
@ -107,11 +107,11 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: 🔧 Prepare environment
|
- name: 🔧 Prepare environment
|
||||||
run: ./.github/scripts/prepare_environment.sh
|
run: ./scripts/prepare_environment.sh
|
||||||
|
|
||||||
- name: 🐍 Install f4pga (pip)
|
- name: 🐍 Install f4pga (pip)
|
||||||
run: |
|
run: |
|
||||||
. ./.github/scripts/activate.sh
|
. ./scripts/activate.sh
|
||||||
cd f4pga
|
cd f4pga
|
||||||
pip install .
|
pip install .
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -124,7 +124,7 @@ jobs:
|
||||||
- name: 🚧 [F4PGA] Test f4pga build
|
- name: 🚧 [F4PGA] Test f4pga build
|
||||||
if: matrix.flow == 'F4PGA'
|
if: matrix.flow == 'F4PGA'
|
||||||
run: |
|
run: |
|
||||||
. ./.github/scripts/activate.sh
|
. ./scripts/activate.sh
|
||||||
cd f4pga-examples/${{ matrix.fam }}
|
cd f4pga-examples/${{ matrix.fam }}
|
||||||
f4pga -vv build --flow ../../.github/${{ matrix.fam }}_test.json
|
f4pga -vv build --flow ../../.github/${{ matrix.fam }}_test.json
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ jobs:
|
||||||
- name: 🚧 [SymbiFlow] Test make example
|
- name: 🚧 [SymbiFlow] Test make example
|
||||||
if: matrix.flow == 'SymbiFlow'
|
if: matrix.flow == 'SymbiFlow'
|
||||||
run: |
|
run: |
|
||||||
. ./.github/scripts/activate.sh
|
. ./scripts/activate.sh
|
||||||
cd f4pga-examples/${{ matrix.fam }}
|
cd f4pga-examples/${{ matrix.fam }}
|
||||||
export F4PGA_USE_DEPRECATED=true
|
export F4PGA_USE_DEPRECATED=true
|
||||||
case '${{ matrix.fam }}' in
|
case '${{ matrix.fam }}' in
|
||||||
|
@ -179,18 +179,18 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: 🔧 Prepare environment
|
- name: 🔧 Prepare environment
|
||||||
run: ./.github/scripts/prepare_environment.sh
|
run: ./scripts/prepare_environment.sh
|
||||||
|
|
||||||
- name: 🐍 Install f4pga (pip)
|
- name: 🐍 Install f4pga (pip)
|
||||||
run: |
|
run: |
|
||||||
. ./.github/scripts/activate.sh
|
. ./scripts/activate.sh
|
||||||
cd f4pga
|
cd f4pga
|
||||||
pip install .
|
pip install .
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
- name: 🚦 Test Python wrappers
|
- name: 🚦 Test Python wrappers
|
||||||
run: |
|
run: |
|
||||||
. ./.github/scripts/activate.sh
|
. ./scripts/activate.sh
|
||||||
pip3 install -r ./test/requirements.txt
|
pip3 install -r ./test/requirements.txt
|
||||||
pytest --verbose --capture=no -rA --color=yes test/
|
pytest --verbose --capture=no -rA --color=yes test/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue