Skip to content

Commit

Permalink
trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
LiatSchulz committed Feb 13, 2024
1 parent a0447db commit 7472df6
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/liat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,25 @@ jobs:
run: yum install -y tar gzip

- name: Checkout Code
uses: actions/checkout@v3.6.0 # Checks out the repository under $GITHUB_WORKSPACE.
uses: actions/checkout@v3 # Checks out the repository under $GITHUB_WORKSPACE.

- name: Install conda
continue-on-error: true
run: |
curl -sS -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda
export PATH=$HOME/miniconda/bin:$PATH
conda init bash > /dev/null
conda update -q conda
conda info -a
bash Miniconda3-latest-Linux-x86_64.sh -b -u -p $HOME/miniconda
- name: Create conda environment
continue-on-error: true
run : |
export PATH=$HOME/miniconda/bin:$PATH
conda init bash > /dev/null
conda create -q -n test-env python=3.10 > /dev/null
conda init bash > /dev/null
conda activate test-env
conda install pheno-utils
conda init bash
# conda create -q -n test-env python=3.10 > /dev/null
# conda init bash > /dev/null
# conda activate test-env
# conda install pheno-utils
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v3.0.2
uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: arn:aws:iam::081569964966:role/github_cicd
aws-region: eu-west-1
Expand Down

0 comments on commit 7472df6

Please sign in to comment.