Skip to content

Commit

Permalink
Fixed test source
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSalinas98 committed Sep 3, 2024
1 parent af58e5e commit fae81e2
Showing 1 changed file with 19 additions and 28 deletions.
Original file line number Diff line number Diff line change
@@ -1,47 +1,42 @@
# Name of the GitHub Action
name: Build plugin on Pull Request
name: Build & test plugin

# Specify when the Action should be triggered: when a pull request is opened against the 'devel' or 'master' branch
on:
pull_request:
branches: [devel, master]

# Define the job that should be run
jobs:
build:
# Specify the machine to run the job on
runs-on: ubuntu-latest

# Define the steps to be taken in the job
steps:
# Freeing up space
- name: Free Disk Space (Ubuntu only)
uses: jlumbroso/free-disk-space@main

# Installing scipion and miniconda dependencies
- name: Set up MPI
uses: mpi4py/setup-mpi@master
with:
mpi: 'openmpi'

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget gcc g++ libopenmpi-dev make
# Installing Miniconda
sudo apt-get install -y wget gcc g++ make
- name: Install Miniconda
working-directory: ${{ github.workspace }}/../
run: |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p miniconda/
source miniconda/etc/profile.d/conda.sh
conda update -n base -c defaults conda -y
uses: conda-incubator/setup-miniconda@main
with:
miniconda-version: "latest"
auto-update-conda: true
auto-activate-base: true
activate-environment: scipion3
python-version: "3.8"

# Installing Scipion
- name: Install Scipion
working-directory: ${{ github.workspace }}/../
run: |
eval "$(miniconda/bin/conda shell.bash hook)"
pip3 install --user scipion-installer
python3 -m scipioninstaller -conda -noXmipp -noAsk scipion
pip install --user scipion-installer
python -m scipioninstaller -conda -noXmipp -noAsk scipion
# Installing scipion-chem
# Checkout to Pull Request branch if exists, by default stays in devel
- name: Install scipion-chem (in branch ${{ github.head_ref }} if exists)
working-directory: ${{ github.workspace }}/../
Expand All @@ -55,21 +50,17 @@ jobs:
fi
scipion/scipion3 installp -p $REPO_NAME --devel
# Check out the repository in the pull request
- name: Checkout repository
uses: actions/checkout@main
with:
ref: ${{ github.head_ref }}

# Install plugin from the pull request using the Scipion3 installp command
- name: Install plugin from pull request
working-directory: ${{ github.workspace }}
run: ../scipion/scipion3 installp -p . --devel

# Run all tests
- name: Run tests
working-directory: ${{ github.workspace }}/${{ vars.FOLDER_WITH_VERSION }}
run: |
eval "$(${{ github.workspace }}/../miniconda/bin/conda shell.bash hook)"
conda activate scipion3
python runTests.py ${{ github.workspace }}/../scipion/scipion3 ${{ vars.FOLDER_WITH_VERSION }} -noGPU -testData=testData.json
pip install --user scipion-testrunner
scipion_testrunner ${{ github.workspace }}/../scipion/scipion3 ${{ vars.FOLDER_WITH_VERSION }} --noGpu --testData=testData.json

0 comments on commit fae81e2

Please sign in to comment.