diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml new file mode 100644 index 0000000..403bed2 --- /dev/null +++ b/.github/workflows/lint.yaml @@ -0,0 +1,18 @@ +name: Linters + +on: [push, pull_request] + +jobs: + rustfmt: + name: Formatter + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Install Rust + run: | + rustup update stable + rustup default stable + rustup component add rustfmt + - name: Check Formatting + run: cargo fmt --all -- --check \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..770c44f --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,167 @@ +on: + push: + tags: + - "v*" # Run when tag matches v*, i.e. v1.0, v20.15.10 + +name: Release + +env: + RELEASE_BIN: ssh-log-cli + RELEASE_DIR: artifacts + GITHUB_REF: "${{ github.ref }}" + WINDOWS_TARGET: x86_64-pc-windows-msvc + MACOS_TARGET: x86_64-apple-darwin + LINUX_TARGET: x86_64-unknown-linux-musl + + # Space separated paths to include in the archive. + RELEASE_ADDS: README.md + +jobs: + build: + name: Build artifacts + runs-on: ${{ matrix.os }} + strategy: + matrix: + build: [linux, macos, windows] + include: + - build: linux + os: ubuntu-latest + rust: stable + - build: macos + os: macos-latest + rust: stable + - build: windows + os: windows-latest + rust: stable + + steps: + - uses: actions/checkout@v2 + + - name: Query version number + id: get_version + shell: bash + run: | + echo "using version tag ${GITHUB_REF:10}" + echo ::set-output name=version::"${GITHUB_REF:10}" + - name: Install Rust + if: matrix.rust + run: | + rustup update ${{ matrix.rust }} --no-self-update + rustup default ${{ matrix.rust }} + - name: Install musl-tools (Linux) + if: matrix.build == 'linux' + run: | + sudo apt-get update -y + sudo apt-get install musl-tools -y + - name: Install p7zip (MacOS) + if: matrix.build == 'macos' + run: brew install p7zip + + - name: Build (Linux) + if: matrix.build == 'linux' + run: | + rustup target add ${{ env.LINUX_TARGET }} + cargo build --release --target ${{ env.LINUX_TARGET }} + - name: Build (MacOS) + if: matrix.build == 'macos' + run: cargo build --release + + - name: Build (Windows) + if: matrix.build == 'windows' + run: cargo build --release + env: + RUSTFLAGS: -Ctarget-feature=+crt-static + + - name: Create artifact directory + run: | + mkdir ${{ env.RELEASE_DIR }} + mkdir dist + - name: Create zip (Linux) + if: matrix.build == 'linux' + run: | + mv ./target/${{ env.LINUX_TARGET }}/release/${{ env.RELEASE_BIN }} ./dist/${{ env.RELEASE_BIN }} + mv ${{ env.RELEASE_ADDS }} ./dist + 7z a ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.LINUX_TARGET }}.zip ./dist/* + - name: Create zip (Windows) + if: matrix.build == 'windows' + shell: bash + run: | + mv ./target/release/${{ env.RELEASE_BIN }}.exe ./dist/${{ env.RELEASE_BIN }}.exe + mv ${{ env.RELEASE_ADDS }} ./dist + 7z a ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.WINDOWS_TARGET }}.zip ./dist/* + - name: Create zip (MacOS) + if: matrix.build == 'macos' + run: | + mv ./target/release/${{ env.RELEASE_BIN }} ./dist/${{ env.RELEASE_BIN }} + mv ${{ env.RELEASE_ADDS }} ./dist + 7z a ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.MACOS_TARGET }}.zip ./dist/* + - name: Upload Zip + uses: actions/upload-artifact@v1 + with: + name: ${{ matrix.build }} + path: ./${{ env.RELEASE_DIR }} + + release: + name: GitHub Release + needs: build + runs-on: ubuntu-latest + steps: + - name: Query version number + id: get_version + shell: bash + run: | + echo "using version tag ${GITHUB_REF:10}" + echo ::set-output name=version::"${GITHUB_REF:10}" + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.get_version.outputs.VERSION }} + release_name: ${{ steps.get_version.outputs.VERSION }} + + - name: Download Linux tarball + uses: actions/download-artifact@v1 + with: + name: linux + + - name: Download Windows tarball + uses: actions/download-artifact@v1 + with: + name: windows + + - name: Download MacOS zip + uses: actions/download-artifact@v1 + with: + name: macos + + - name: Release Linux zip + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./linux/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.LINUX_TARGET }}.zip + asset_content_type: application/gzip + asset_name: ${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.LINUX_TARGET }}.zip + + - name: Release Windows zip + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./windows/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.WINDOWS_TARGET }}.zip + asset_content_type: application/gzip + asset_name: ${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.WINDOWS_TARGET }}.zip + + - name: Release MacOS zip + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./macos/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.MACOS_TARGET }}.zip + asset_content_type: application/gzip + asset_name: ${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ env.MACOS_TARGET }}.zip \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..2623c76 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,38 @@ +name: Tests + +on: [push, pull_request] + +jobs: + test: + name: Test + + runs-on: ${{ matrix.os }} + strategy: + matrix: + build: [linux-stable, macos-stable, windows-stable] + include: + - build: linux-stable + os: ubuntu-latest + rust: stable + - build: macos-stable + os: macos-latest + rust: stable + - build: windows-stable + os: windows-latest + rust: stable + + steps: + - uses: actions/checkout@v2 + + - name: Install Rust + run: | + rustup update ${{ matrix.rust }} --no-self-update + rustup default ${{ matrix.rust }} + - name: Run Tests + run: | + cargo build + cargo test + cargo build --no-default-features + cargo test --no-default-features + env: + RUST_BACKTRACE: 1 \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0a14d46 --- /dev/null +++ b/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2020, Cloudflare, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file