10
10
11
11
jobs :
12
12
Test-QCD-Pipeline :
13
- # runs-on: ubuntu-latest
14
- runs-on : self-hosted
13
+ runs-on : ubuntu-latest
14
+ # runs-on: self-hosted
15
15
steps :
16
16
# - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
17
17
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
@@ -32,18 +32,15 @@ jobs:
32
32
33
33
- name : Set up Miniconda
34
34
uses : conda-incubator/setup-miniconda@v2
35
- env :
36
- CONDA : " /Users/Dhatrib/miniconda3"
35
+ # env:
36
+ # CONDA: "/Users/Dhatrib/miniconda3"
37
37
with :
38
- # export CONDA="/Users/Dhatrib/miniconda3"
39
- # export PATH="$CONDA/bin:$PATH"
40
- # CONDA: "/Users/Dhatrib/miniconda3"
41
38
# miniconda-version: "latest"
42
39
python-version : ' 3.10'
43
40
auto-update-conda : true
44
41
activate-environment : ' qcd_env_test'
45
42
environment-file : ' qcd_environment_shr.yaml'
46
- # use-channel-priority: true
43
+ use-channel-priority : true
47
44
48
45
# - name: SSh into Actions
49
46
# uses: actions/checkout@v4
52
49
53
50
- name : Install pip dependencies
54
51
run : |
55
- source /Users/Dhatrib/miniconda3/etc/profile.d/conda.sh
56
- conda init
52
+ #source /Users/Dhatrib/miniconda3/etc/profile.d/conda.sh
53
+ #conda init
54
+ source $CONDA/bin/activate
57
55
conda activate qcd_env_test
58
56
pip install --requirement .test/requirements.txt
59
57
pip install dropbox
@@ -90,37 +88,37 @@ jobs:
90
88
# ./mconfig --without-suid && \
91
89
# make -C ./builddir && \
92
90
# make -C ./builddir install
93
- - name : Install Go
94
- run : |
95
- brew install go
96
- go version
91
+ # - name: Install Go
92
+ # run: |
93
+ # brew install go
94
+ # go version
97
95
98
- - name : Install dependencies using Homebrew
99
- run : |
100
- brew install wget
101
- brew install go
102
- brew install squashfs
96
+ # - name: Install dependencies using Homebrew
97
+ # run: |
98
+ # brew install wget
99
+ # brew install go
100
+ # brew install squashfs
103
101
104
- - name : Download Singularity
105
- run : |
106
- wget https://github.com/sylabs/singularity/archive/refs/tags/v3.8.3.tar.gz
107
- tar -xzf singularity-3.8.3.tar.gz
102
+ # - name: Download Singularity
103
+ # run: |
104
+ # wget https://github.com/sylabs/singularity/archive/refs/tags/v3.8.3.tar.gz
105
+ # tar -xzf singularity-3.8.3.tar.gz
108
106
109
- - name : Install Singularity
110
- run : |
111
- cd singularity
112
- ./mconfig
113
- make -C builddir
114
- sudo make -C builddir install
107
+ # - name: Install Singularity
108
+ # run: |
109
+ # cd singularity
110
+ # ./mconfig
111
+ # make -C builddir
112
+ # sudo make -C builddir install
115
113
116
- - name : Verify Singularity installation
117
- run : singularity --version
114
+ # - name: Verify Singularity installation
115
+ # run: singularity --version
118
116
119
117
# https://github.com/sylabs/singularity/archive/refs/tags/v3.8.3.tar.gz
120
- # - name: Install singularity
121
- # uses: eWaterCycle/setup-singularity@v7
122
- # with:
123
- # singularity-version: 3.8.3
118
+ - name : Install singularity
119
+ uses : eWaterCycle/setup-singularity@v7
120
+ with :
121
+ singularity-version : 3.8.3
124
122
# - name: Export Singularity Path
125
123
# run: |
126
124
# export PATH=/home/runner/go/src/github.com/hpcng/singularity-3.8.3/prefix/bin:$PATH
0 commit comments