diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-08 13:16:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-08 13:16:47 +0000 |
commit | 4f5226cb7a97f86421a94fcc75c59fe6d709ae02 (patch) | |
tree | 1a2cab09cbbc1040650fe21c0a9cef15d2ccb6ee /.github | |
parent | Initial commit. (diff) | |
download | ttyd-4f5226cb7a97f86421a94fcc75c59fe6d709ae02.tar.xz ttyd-4f5226cb7a97f86421a94fcc75c59fe6d709ae02.zip |
Adding upstream version 1.6.3.upstream/1.6.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 31 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 20 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/support-request.md | 10 | ||||
-rw-r--r-- | .github/workflows/backend.yml | 61 | ||||
-rw-r--r-- | .github/workflows/frontend.yml | 26 | ||||
-rw-r--r-- | .github/workflows/release.yml | 50 |
6 files changed, 198 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..a895f5f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment:** + - OS: [e.g. macOS 10.15.2] + - Browser: [e.g. Chrome 79.0.3945.130] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..11fc491 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/support-request.md b/.github/ISSUE_TEMPLATE/support-request.md new file mode 100644 index 0000000..b5510d7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support-request.md @@ -0,0 +1,10 @@ +--- +name: Support Request +about: Support request or question +title: '' +labels: question +assignees: '' + +--- + +Describe your problem or question here. diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml new file mode 100644 index 0000000..a5b8af2 --- /dev/null +++ b/.github/workflows/backend.yml @@ -0,0 +1,61 @@ +name: backend + +on: + push: + paths: + - ".github/workflows/backend.yml" + - "CMakeLists.txt" + - "src/*" + - "scripts/*" + pull_request: + paths: + - ".github/workflows/backend.yml" + - "CMakeLists.txt" + - "src/*" + - "scripts/*" + +jobs: + build: + runs-on: ubuntu-18.04 + strategy: + matrix: + lws-version: [4.1.6, 3.2.3, 2.4.2] + steps: + - name: Install packages + run: | + sudo apt-get update + sudo apt-get install build-essential cmake libjson-c-dev zlib1g-dev libssl-dev libuv1-dev + - name: Install libwebsockets-${{ matrix.lws-version }} + env: + LWS_VERSION: ${{ matrix.lws-version }} + run: | + cd $(mktemp -d) + curl -sLo- https://github.com/warmcat/libwebsockets/archive/v${LWS_VERSION}.tar.gz | tar xz + 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 + - name: Build ttyd + run: | + cmake -DCMAKE_BUILD_TYPE=RELEASE . + make && sudo make install + ttyd -v + cross: + runs-on: ubuntu-18.04 + strategy: + matrix: + target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el] + steps: + - uses: actions/checkout@v2 + - name: Install packages + run: | + sudo apt-get update + sudo apt-get install -y autoconf automake build-essential cmake curl file libtool + - name: Cross build (${{ matrix.target }}) + env: + BUILD_TARGET: ${{ matrix.target }} + run: ./scripts/cross-build.sh + - uses: actions/upload-artifact@v1 + with: + name: ttyd.${{ matrix.target }} + path: build/ttyd diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml new file mode 100644 index 0000000..f18b405 --- /dev/null +++ b/.github/workflows/frontend.yml @@ -0,0 +1,26 @@ +name: frontend + +on: + push: + paths: + - ".github/workflows/frontend.yml" + - "html/*" + pull_request: + paths: + - ".github/workflows/frontend.yml" + - "html/*" + +jobs: + build: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '12.x' + - name: Run yarn install, check and build + run: | + cd html + yarn install + yarn run check + yarn run build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f630578 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,50 @@ +name: release + +on: + push: + tags: + - "*" + +jobs: + release: + runs-on: ubuntu-18.04 + outputs: + upload_url: ${{ steps.create_release.outputs.upload_url }} + steps: + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: ${{ github.ref }} + draft: true + prerelease: false + + build: + runs-on: ubuntu-18.04 + needs: release + strategy: + matrix: + target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el] + steps: + - uses: actions/checkout@v2 + - name: Install packages + run: | + sudo apt-get update + sudo apt-get install -y autoconf automake build-essential cmake curl file libtool + - name: Cross build (${{ matrix.target }}) + env: + BUILD_TARGET: ${{ matrix.target }} + run: ./scripts/cross-build.sh + - name: Upload assets + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ needs.release.outputs.upload_url }} + asset_path: build/ttyd + asset_name: ttyd.${{ matrix.target }} + asset_content_type: application/octet-stream
\ No newline at end of file |