-
Notifications
You must be signed in to change notification settings - Fork 1
114 lines (101 loc) · 3.84 KB
/
build-linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Build linux (Ubuntu-20)
on:
workflow_dispatch:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Compile nroff tools
run: |
mkdir downloads
mkdir packages
cd ./nroff
make
- name: Compile linux mec
run: |
cd ./microemacs/src
./build.sh -t c
- name: Compile linux mew
run: |
cd ./microemacs/src
./build.sh -t w
- name: Create linux binaries download
run: |
cd ./microemacs/bin
mv linux5-intel64-gcc9 linux5-intel64
rm ./.gitignore
cd ..
export MEVER=`./bin/linux5-intel64/mec -p @contribs/ver.emf`
zip -r ../downloads/Jasspa_MicroEmacs_${MEVER}_linux_binaries bin license.txt readme.txt
- name: Create linux mecs
run: |
export MEVER=`./microemacs/bin/linux5-intel64/mec -p @microemacs/contribs/ver.emf`
cd ./microemacs/mesingle
rm -rf bin/linux5-intel64
mkdir -p bin/linux5-intel64
../bin/linux5-intel64/mec -p "@mesgen" -f -p ../bin/linux5-intel64/mec -t ../bin/linux5-intel64/tfs -o bin/linux5-intel64/mecs
cp ../license.txt ./
cp ../readme.txt ./
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_linux_mecs bin license.txt readme.txt
- name: Create linux mews
run: |
export MEVER=`./microemacs/bin/linux5-intel64/mec -p @microemacs/contribs/ver.emf`
cd ./microemacs/mesingle
rm -rf bin/linux5-intel64
mkdir -p bin/linux5-intel64
../bin/linux5-intel64/mec -p "@mesgen" -f -p ../bin/linux5-intel64/mew -t ../bin/linux5-intel64/tfs -o bin/linux5-intel64/mews
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_linux_mews bin license.txt readme.txt
- name: Create linux OpenSSL download
run: |
cd ./microemacs/
export MEVER=`./bin/linux5-intel64/mec -p @contribs/ver.emf`
rm -rf tfs
mkdir -p tfs/bin/linux5-intel64
cd tfs
cp /lib/x86_64-linux-gnu/libcrypto.so bin/linux5-intel64
cp /lib/x86_64-linux-gnu/libssl.so bin/linux5-intel64
zip -r ../../downloads/Jasspa_MicroEmacs_${MEVER}_linux_openssl bin
cd ..
./bin/linux5-intel64/tfs -o ../packages/Jasspa_MicroEmacs_${MEVER}_linux_openssl.tfs -a ./mesingle/tfs_hd tfs
- name: Generate docs
run: |
export PATH=`pwd`/microemacs/bin/linux5-intel64:`pwd`/nroff/bin/linux:$PATH
export MEPATH=`pwd`/microemacs/macros
export MEVER=`mec -p @microemacs/contribs/ver.emf`
cd ./microemacs/doc
make me.ehf
rm -rf tfs
mkdir -p tfs/macros
mv me.ehf tfs/macros
cd tfs
cp ../../license.txt ./
cp ../../readme.txt ./
zip -r ../../../downloads/Jasspa_MicroEmacs_${MEVER}_hlpehf macros license.txt readme.txt
cd ..
../bin/linux5-intel64/tfs -o ../../packages/Jasspa_MicroEmacs_${MEVER}_hlpehf.tfs -a ../mesingle/tfs_hd tfs
- name: Generate macros
run: |
cd ./microemacs/
export MEVER=`./bin/linux5-intel64/mec -p @contribs/ver.emf`
cd macros
make -f Makefile release
cd ../release/jasspa/
cp ../../license.txt ./
cp ../../readme.txt ./
zip -r ../../../downloads/Jasspa_MicroEmacs_${MEVER}_macros macros license.txt readme.txt
cd ..
../bin/linux5-intel64/tfs -o ../../packages/Jasspa_MicroEmacs_${MEVER}_macros.tfs -a ../mesingle/tfs_hd jasspa
- name: Upload linux downloads
uses: actions/upload-artifact@v4
with:
name: linux-downloads
path: downloads
- name: Upload linux packages
uses: actions/upload-artifact@v4
with:
name: linux-packages
path: packages