summaryrefslogtreecommitdiffstats
path: root/.github/workflows/backend.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-23 08:44:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-23 08:44:48 +0000
commitdf3710fc583213108253a978d8ea1ea14426acc0 (patch)
tree8177931c2abf355d2d246925a4c1ebe70f476bac /.github/workflows/backend.yml
parentAdding upstream version 1.7.2. (diff)
downloadttyd-df3710fc583213108253a978d8ea1ea14426acc0.tar.xz
ttyd-df3710fc583213108253a978d8ea1ea14426acc0.zip
Adding upstream version 1.7.3.upstream/1.7.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/backend.yml')
-rw-r--r--.github/workflows/backend.yml36
1 files changed, 7 insertions, 29 deletions
diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml
index 9dff623..cfab7bd 100644
--- a/.github/workflows/backend.yml
+++ b/.github/workflows/backend.yml
@@ -18,6 +18,7 @@ jobs:
build:
runs-on: ubuntu-20.04
strategy:
+ fail-fast: false
matrix:
lws-version: [4.3.2, 3.2.3]
steps:
@@ -34,7 +35,7 @@ jobs:
cd libwebsockets-${LWS_VERSION}
cmake -DLWS_WITH_LIBUV=ON -DLWS_UNIX_SOCK=ON -DLWS_IPV6=ON -DLWS_WITHOUT_TESTAPPS=ON -DCMAKE_BUILD_TYPE=RELEASE .
make && sudo make install && sudo ldconfig
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Build ttyd
run: |
cmake -DCMAKE_BUILD_TYPE=RELEASE .
@@ -43,10 +44,11 @@ jobs:
cross:
runs-on: ubuntu-20.04
strategy:
+ fail-fast: false
matrix:
- target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x]
+ target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x, win32]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install packages
run: |
sudo apt-get update
@@ -55,31 +57,7 @@ jobs:
env:
BUILD_TARGET: ${{ matrix.target }}
run: ./scripts/cross-build.sh
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: ttyd.${{ matrix.target }}
- path: build/ttyd
- win10:
- runs-on: windows-latest
- steps:
- - uses: actions/checkout@v2
- - uses: msys2/setup-msys2@v2
- with:
- msystem: MINGW64
- install: >-
- base-devel
- subversion
- mingw64/mingw-w64-x86_64-gcc
- mingw64/mingw-w64-x86_64-cmake
- mingw64/mingw-w64-x86_64-zlib
- mingw64/mingw-w64-x86_64-libuv
- mingw64/mingw-w64-x86_64-mbedtls
- mingw64/mingw-w64-x86_64-json-c
- update: true
- - name: Build ttyd
- shell: msys2 {0}
- run: ./scripts/mingw-build.sh
- - uses: actions/upload-artifact@v2
- with:
- name: ttyd.win10
- path: build/ttyd.exe
+ path: build/ttyd*