-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (100 loc) · 2.72 KB
/
release.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
name: release
on:
# push:
# tags:
# - v*.*.*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# TODO: rewrite with matrix?
# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: '1.20'
#
# - name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v5
# with:
# distribution: goreleaser
# args: build --clean --snapshot --config=ci/.goreleaser-darwin.yml
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# linux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Install compiler
# run: sudo apt-get -y install gcc-aarch64-linux-gnu
#
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: '1.20'
#
# - name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v5
# with:
# distribution: goreleaser
# args: build --clean --snapshot --config=ci/.goreleaser-linux.yml
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
windows:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
- uses: msys2/setup-msys2@v2
- name: Set up MSYS packages
shell: msys2 {0}
run: |
pacman -S --noconfirm mingw-w64-x86_64-dlfcn
where libdl.dll
if [ -e "D:\a\_temp\msys64\mingw64\bin\libdl.dll" ]
then
echo "<<<1 dlfcn FOUND"
else
echo "<<<1 dlfcn not found"
fi
- name: Check MSYS packages
run: |
if [ -e "D:\a\_temp\msys64\mingw64\bin\libdl.dll" ]
then
echo "<<<2 dlfcn FOUND"
else
echo "<<<2 dlfcn not found"
fi
echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH}"
# - name: Print
# run: |
# where libdl.so.2
# - name: Setup dlfcn-win32
# run: |
# git clone https://github.com/dlfcn-win32/dlfcn-win32.git
# cd dlfcn-win32/
# chmod u+x configure
# ./configure
# make
# make install
- name: Run GoReleaser
# shell: msys2 {0}
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
args: build --clean --snapshot --config=ci/.goreleaser-windows.yml --debug --verbose --fail-fast
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}