Skip to content

Commit 00e4da4

Browse files
committed
Update sourcehut build manifests
1 parent 34f03df commit 00e4da4

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

scripts/ubuntu-build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ tasks:
1919
lhelper create gsl-shell -n
2020
source "$(lhelper env-source gsl-shell)"
2121
lhelper install fox -xft
22-
lhelper install openblas
22+
# By using target nehalem we are quite conservative but we don't support
23+
# very old CPU microarchitectures.
24+
lhelper install openblas -target=nehalem
2325
- build: |
2426
cd gsl-shell
2527
source "$(lhelper env-source gsl-shell)"
@@ -31,5 +33,7 @@ tasks:
3133
bash scripts/repackage-appimage.sh gsl-shell-gslcblas-linux-x86_64.tar.gz
3234
artifacts:
3335
- gsl-shell/gsl-shell-linux-x86_64.tar.gz
36+
- gsl-shell/GSLShell-x86_64.AppImage
3437
- gsl-shell/gsl-shell-gslcblas-linux-x86_64.tar.gz
38+
- gsl-shell/GSLShell-gslcblas-x86_64.AppImage
3539

scripts/ubuntu-gslcblas-build.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
image: ubuntu/18.04
22
packages:
33
# xorg-dev can be used instead of the detailed list of x11 libraries
4-
[python3-pip, make, ninja-build, pkg-config, libx11-dev, libxext-dev, libxrandr-dev, libxrender-dev, libxcursor-dev, libxfixes-dev, libxi-dev, libxft-dev, gcc, g++]
4+
# fuse needed to create appimage
5+
[python3-pip, fuse, make, ninja-build, pkg-config, libx11-dev, libxext-dev, libxrandr-dev, libxrender-dev, libxcursor-dev, libxfixes-dev, libxi-dev, libxft-dev, gcc, g++]
56
sources:
67
- https://github.com/franko/gsl-shell
78
- https://github.com/franko/lhelper
@@ -21,9 +22,10 @@ tasks:
2122
- build: |
2223
cd gsl-shell
2324
source "$(lhelper env-source gsl-shell)"
24-
bash scripts/build-package.sh
25-
cd packages
26-
tar czvf gsl-shell.tar.gz gsl-shell
25+
26+
bash scripts/build-package.sh -unix
27+
bash scripts/repackage-appimage.sh gsl-shell-gslcblas-linux-x86_64.tar.gz
2728
artifacts:
28-
- gsl-shell/packages/gsl-shell.tar.gz
29+
- gsl-shell/gsl-shell-gslcblas-linux-x86_64.tar.gz
30+
- gsl-shell/GSLShell-gslcblas-x86_64.AppImage
2931

0 commit comments

Comments
 (0)