From df3710fc583213108253a978d8ea1ea14426acc0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 23 Jan 2023 09:44:48 +0100 Subject: Adding upstream version 1.7.3. Signed-off-by: Daniel Baumann --- .github/workflows/backend.yml | 36 +++++++----------------------------- 1 file changed, 7 insertions(+), 29 deletions(-) (limited to '.github/workflows/backend.yml') 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* -- cgit v1.2.3