-
Notifications
You must be signed in to change notification settings - Fork 21
41 lines (40 loc) · 1.41 KB
/
build-dev-linux-glibc-amd64.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
name: Build dev Linux-glibc amd64 binary
on:
workflow_dispatch:
jobs:
build-dev-linux-glibc-amd64:
name: Build dev amd64 Linux glibc binary
runs-on: ubuntu-20.04
env:
BUILD_ARCH: x64
BUILD_LOGLEVEL: verbose
BUILD_STATIC: '--partly-static'
steps:
- uses: actions/setup-python@v4
id: py
with:
python-version: '3.9' # workaround "cannot import name 'Mapping' from 'collections'" error
- uses: actions/checkout@v3
- run: |
sudo apt-get update
sudo apt-get install -y gcc-10 g++-10
- run: npm install --production --ignore-scripts
- run: npm install --production
working-directory: nexe
# diagnose weird failure between initial message and download message
- run: sed -i '/return tryInvokeMiddleware/i try{console.log("Invoke middleware", mw.name);}catch(x){}' node_modules/app-builder/lib/compose.js
working-directory: nexe
continue-on-error: true
- run: node build
working-directory: nexe
env:
CC: gcc-10
CXX: g++-10
- run: nexe/parpar --version
- run: nexe/parpar -r1 -s1M -onexe/test.par2 nexe/parpar
- run: xz -9e --x86 --lzma2 nexe/parpar -c > parpar.xz
- uses: actions/upload-artifact@v3
with:
path: ./parpar.xz
name: parpar-${{ github.ref_name }}-linux-glibc-amd64.xz
retention-days: 5