-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (73 loc) · 2.3 KB
/
build.yml
File metadata and controls
88 lines (73 loc) · 2.3 KB
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
name: build-release
on:
push:
branches: [main]
pull_request:
permissions:
contents: write # required for release creation
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
# ================= VERSION (commit-based) =================
- name: compute version
id: ver
shell: bash
run: |
SHORT_SHA=$(git rev-parse --short HEAD)
echo "version=dev-$SHORT_SHA" >> $GITHUB_OUTPUT
# ================= LINUX =================
- name: linux deps
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install -y libcurl4-openssl-dev
# ================= MAC =================
- name: mac deps
if: runner.os == 'macOS'
run: brew install curl
# ================= WINDOWS =================
- name: windows setup
if: runner.os == 'Windows'
uses: msys2/setup-msys2@v2
with:
install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-curl
# ================= BUILD =================
- name: build linux/mac
if: runner.os != 'Windows'
run: |
cmake -B build
cmake --build build
- name: build windows
if: runner.os == 'Windows'
shell: msys2 {0}
run: |
gcc main.c cJSON.c -o wiki_cli.exe -lcurl
# ================= PACKAGE =================
- name: package
shell: bash
run: |
mkdir dist
if [ "${{ runner.os }}" = "Windows" ]; then
cp wiki_cli.exe dist/wiki_cli-windows.exe
elif [ "${{ runner.os }}" = "macOS" ]; then
cp build/wiki_cli dist/wiki_cli-macos
else
cp build/wiki_cli dist/wiki_cli-linux
fi
# ================= UPLOAD ARTIFACT =================
- uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-binary
path: dist/*
# ================= AUTO RELEASE =================
- name: GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.ver.outputs.version }}
name: ${{ steps.ver.outputs.version }}
files: dist/*