File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 14
14
include :
15
15
- os : ubuntu-latest
16
16
artifact_name : gaps.sif
17
- asset_name : gaps-linux-amd64
18
- body : GAPs Apptainer Image (ubuntu-latest)
17
+ asset_name : gaps-linux-amd64.sif
19
18
# - os: windows-latest
20
19
# artifact_name: mything.exe
21
20
# asset_name: mything-windows-amd64
51
50
asset_name : ${{ matrix.asset_name }}
52
51
tag : ${{ github.ref }}
53
52
overwrite : true
54
- body : ${{ matrix.body }}
Original file line number Diff line number Diff line change @@ -9,10 +9,14 @@ From: python:3.11
9
9
%post
10
10
echo "Installing vim"
11
11
apt-get update && apt-get -y upgrade
12
- apt-get -y --allow-unauthenticated install vim
12
+ apt-get -y --allow-unauthenticated install vim git wget nano make
13
+
14
+ echo "Downloading GAPs"
15
+ git clone https://github.com/NREL/gaps.git
13
16
14
17
echo "Installing GAPs..."
15
- pip install NREL-gaps
18
+ cd gaps
19
+ pip install -e .
16
20
17
21
%runscript
18
22
"$@"
You can’t perform that action at this time.
0 commit comments