From ee0c9008ffa0c35fee36e4d32494cf3090ea8257 Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Sat, 6 Aug 2022 14:56:58 +0200 Subject: [PATCH] mv .github/scripts ./ Signed-off-by: Unai Martinez-Corral --- .github/workflows/Pipeline.yml | 14 +++++++------- {.github/scripts => scripts}/activate.sh | 0 .../scripts => scripts}/prepare_environment.sh | 0 3 files changed, 7 insertions(+), 7 deletions(-) rename {.github/scripts => scripts}/activate.sh (100%) rename {.github/scripts => scripts}/prepare_environment.sh (100%) 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