Skip to content

Commit 50823d5

Browse files
committed
update release workflow
1 parent 75ea04e commit 50823d5

2 files changed

Lines changed: 4 additions & 28 deletions

File tree

.github/workflows/backend.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-20.04
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
lws-version: [4.3.2, 3.2.3]
2324
steps:
@@ -43,6 +44,7 @@ jobs:
4344
cross:
4445
runs-on: ubuntu-20.04
4546
strategy:
47+
fail-fast: false
4648
matrix:
4749
target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x, win32]
4850
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ jobs:
99
build:
1010
runs-on: ubuntu-20.04
1111
strategy:
12+
fail-fast: false
1213
matrix:
13-
target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x]
14+
target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x, win32]
1415
steps:
1516
- uses: actions/checkout@v3
1617
- name: Install packages
@@ -28,30 +29,3 @@ jobs:
2829
artifacts: build/ttyd.${{ matrix.target }}
2930
allowUpdates: true
3031
draft: true
31-
win10:
32-
runs-on: windows-latest
33-
steps:
34-
- uses: actions/checkout@v3
35-
- uses: msys2/setup-msys2@v2
36-
with:
37-
msystem: ucrt64
38-
install: >-
39-
base-devel
40-
subversion
41-
mingw-w64-ucrt-x86_64-gcc
42-
mingw-w64-ucrt-x86_64-cmake
43-
mingw-w64-ucrt-x86_64-zlib
44-
mingw-w64-ucrt-x86_64-libuv
45-
mingw-w64-ucrt-x86_64-mbedtls
46-
mingw-w64-ucrt-x86_64-json-c
47-
update: true
48-
- name: Build ttyd
49-
shell: msys2 {0}
50-
run: |
51-
./scripts/mingw-build.sh
52-
mv build/ttyd.exe build/ttyd.win10.exe
53-
- uses: ncipollo/release-action@v1
54-
with:
55-
artifacts: build/ttyd.win10.exe
56-
allowUpdates: true
57-
draft: true

0 commit comments

Comments
 (0)