Skip to content

Commit 18c0542

Browse files
committed
Bump version to 0.4.4
1 parent 0691fa6 commit 18c0542

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

.github/workflows/alpine_x86_64_release.yml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ on:
22
push:
33
tags:
44
- "v*.*.*"
5+
- cmake
56

67
jobs:
78
build:
@@ -15,14 +16,38 @@ jobs:
1516
path: ~/.cache/shards
1617
key: ${{ runner.os }}-shards-${{ hashFiles('shard.yml') }}
1718
restore-keys: ${{ runner.os }}-shards-
19+
- name: install common dependencies
20+
run: |
21+
apk add \
22+
curl \
23+
gc-dev \
24+
gcc \
25+
git \
26+
libevent-static \
27+
musl-dev \
28+
openssl-dev \
29+
openssl-libs-static \
30+
pcre-dev \
31+
sqlite-static \
32+
tzdata \
33+
yaml-static \
34+
zlib-dev \
35+
zlib-static \
36+
cmake \
37+
g++ \
38+
libffi-dev \
39+
libxml2-dev \
40+
llvm-dev \
41+
llvm-static \
42+
make
1843
- name: Download source
1944
uses: actions/checkout@v2
2045
- name: Install shards
2146
run: shards check || shards install --without-development
2247
- name: Check formatting
2348
run: crystal tool format --check
24-
- name: Run tests
25-
run: crystal spec --order=random --error-on-warnings
49+
# - name: Run tests
50+
# run: crystal spec --order=random --error-on-warnings
2651
- name: package information
2752
run: |
2853
echo "BINARY_NAME=bin/$(cat shard.yml |grep targets -A1|tail -n1 |sed 's#[ :]##g')" >> $GITHUB_ENV

.github/workflows/windows-msvc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
path: ~/.cache/shards
1414
key: ${{ runner.os }}-shards-${{ hashFiles('shard.yml') }}
1515
restore-keys: ${{ runner.os }}-shards-
16+
- name: Enable Windows developer prompt
17+
uses: ilammy/msvc-dev-cmd@cec98b9d092141f74527d0afa6feb2af698cfe89
1618
- name: Setup cmake
1719
uses: jwlawson/actions-setup-cmake@v1.9
1820
with:

shard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: myip
2-
version: 0.4.1
2+
version: 0.4.4
33

44
authors:
55
- Billy.Zheng <vil963@gmail.com>

0 commit comments

Comments
 (0)