diff --git a/.github/workflows/Pipeline.yml b/.github/workflows/Pipeline.yml index a7481fb..83f266a 100644 --- a/.github/workflows/Pipeline.yml +++ b/.github/workflows/Pipeline.yml @@ -107,11 +107,11 @@ jobs: uses: actions/checkout@v3 - name: 🔧 Prepare environment - run: ./.github/scripts/prepare_environment.sh + run: ./scripts/prepare_environment.sh - name: 🐍 Install f4pga (pip) run: | - . ./.github/scripts/activate.sh + . ./scripts/activate.sh cd f4pga pip install . cd .. @@ -124,7 +124,7 @@ jobs: - name: 🚧 [F4PGA] Test f4pga build if: matrix.flow == 'F4PGA' run: | - . ./.github/scripts/activate.sh + . ./scripts/activate.sh cd f4pga-examples/${{ matrix.fam }} f4pga -vv build --flow ../../.github/${{ matrix.fam }}_test.json @@ -141,7 +141,7 @@ jobs: - name: 🚧 [SymbiFlow] Test make example if: matrix.flow == 'SymbiFlow' run: | - . ./.github/scripts/activate.sh + . ./scripts/activate.sh cd f4pga-examples/${{ matrix.fam }} export F4PGA_USE_DEPRECATED=true case '${{ matrix.fam }}' in @@ -179,18 +179,18 @@ jobs: uses: actions/checkout@v3 - name: 🔧 Prepare environment - run: ./.github/scripts/prepare_environment.sh + run: ./scripts/prepare_environment.sh - name: 🐍 Install f4pga (pip) run: | - . ./.github/scripts/activate.sh + . ./scripts/activate.sh cd f4pga pip install . cd .. - name: 🚦 Test Python wrappers run: | - . ./.github/scripts/activate.sh + . ./scripts/activate.sh pip3 install -r ./test/requirements.txt pytest --verbose --capture=no -rA --color=yes test/ diff --git a/.github/scripts/activate.sh b/scripts/activate.sh similarity index 100% rename from .github/scripts/activate.sh rename to scripts/activate.sh diff --git a/.github/scripts/prepare_environment.sh b/scripts/prepare_environment.sh similarity index 100% rename from .github/scripts/prepare_environment.sh rename to scripts/prepare_environment.sh