-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
173 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,143 +1,184 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
tags: | ||
- 'v*' | ||
branches: | ||
- main | ||
|
||
|
||
permissions: | ||
contents: write | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: 1 | ||
CARGO_INCREMENTAL: 0 | ||
CARGO_PROFILE_DEV_DEBUG: 0 | ||
CARGO_HUSKY_DONT_INSTALL_HOOKS: true | ||
COMPLETION_DIR: "target/tmp/bottom/completion/" | ||
MANPAGE_DIR: "target/tmp/bottom/manpage/" | ||
|
||
defaults: | ||
run: | ||
# necessary for windows | ||
shell: bash | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'ClementTsang/bottom' }} | ||
|
||
jobs: | ||
test: | ||
release: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Cargo cache | ||
uses: actions/cache@v2 | ||
- name: Check if this action should be skipped | ||
id: skip_check | ||
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
./target | ||
key: test-cargo-registry | ||
- name: List | ||
run: find ./ | ||
- name: Run tests | ||
run: cargo test --verbose | ||
|
||
build: | ||
skip_after_successful_duplicate: "true" | ||
paths: '[".cargo/**", ".github/workflows/ci.yml", "sample_configs/**", "src/**", "tests/**", "build.rs", "Cargo.lock", "Cargo.toml", "clippy.toml", "rustfmt.toml", "Cross.toml"]' | ||
do_not_skip: '["workflow_dispatch", "push"]' | ||
|
||
|
||
build-release: | ||
needs: release | ||
runs-on: ${{ matrix.info.os }} | ||
if: ${{ needs.release.outputs.should_skip != 'true' }} | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# a list of all the targets | ||
include: | ||
- TARGET: x86_64-unknown-linux-gnu # tested in a debian container on a mac | ||
OS: ubuntu-latest | ||
- TARGET: x86_64-unknown-linux-musl # test in an alpine container on a mac | ||
OS: ubuntu-latest | ||
- TARGET: aarch64-unknown-linux-gnu # tested on aws t4g.nano | ||
OS: ubuntu-latest | ||
- TARGET: aarch64-unknown-linux-musl # tested on aws t4g.nano in alpine container | ||
OS: ubuntu-latest | ||
- TARGET: armv7-unknown-linux-gnueabihf # raspberry pi 2-3-4, not tested | ||
OS: ubuntu-latest | ||
- TARGET: armv7-unknown-linux-musleabihf # raspberry pi 2-3-4, not tested | ||
OS: ubuntu-latest | ||
- TARGET: arm-unknown-linux-gnueabihf # raspberry pi 0-1, not tested | ||
OS: ubuntu-latest | ||
- TARGET: arm-unknown-linux-musleabihf # raspberry pi 0-1, not tested | ||
OS: ubuntu-latest | ||
- TARGET: x86_64-apple-darwin # tested on a mac, is not properly signed so there are security warnings | ||
OS: macos-latest | ||
- TARGET: x86_64-pc-windows-msvc # tested on a windows machine | ||
OS: windows-latest | ||
needs: test | ||
runs-on: ${{ matrix.OS }} | ||
env: | ||
NAME: rust-cross-compile-example # change with the name of your project | ||
TARGET: ${{ matrix.TARGET }} | ||
OS: ${{ matrix.OS }} | ||
info: | ||
- { | ||
os: "ubuntu-latest", | ||
target: "i686-unknown-linux-gnu", | ||
cross: true, | ||
rust: stable, | ||
} | ||
|
||
- { | ||
os: "ubuntu-latest", | ||
target: "x86_64-unknown-linux-gnu", | ||
cross: true, | ||
rust: stable, | ||
} | ||
|
||
- { | ||
os: "windows-2019", | ||
target: "i686-pc-windows-msvc", | ||
cross: false, | ||
rust: stable, | ||
} | ||
- { | ||
os: "windows-2019", | ||
target: "x86_64-pc-windows-gnu", | ||
cross: false, | ||
rust: stable, | ||
} | ||
|
||
# Beta | ||
- { | ||
os: "ubuntu-latest", | ||
target: "x86_64-unknown-linux-gnu", | ||
cross: false, | ||
rust: beta, | ||
} | ||
- { | ||
os: "macos-12", | ||
target: "x86_64-apple-darwin", | ||
cross: false, | ||
rust: beta, | ||
} | ||
- { | ||
os: "windows-2019", | ||
target: "x86_64-pc-windows-msvc", | ||
cross: false, | ||
rust: beta, | ||
} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Cargo cache | ||
uses: actions/cache@v2 | ||
- name: Install Dependencies | ||
if: ${{ matrix.info.os == 'ubuntu-latest' }} | ||
run: sudo apt update && sudo apt install pkg-config libssl-dev -y | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Set up Rust toolchain | ||
uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
./target | ||
key: build-cargo-registry-${{matrix.TARGET}} | ||
- name: List | ||
run: find ./ | ||
- name: Install and configure dependencies | ||
run: | | ||
# dependencies are only needed on ubuntu as that's the only place where | ||
# we make cross-compilation | ||
if [[ $OS =~ ^ubuntu.*$ ]]; then | ||
sudo apt-get install -qq crossbuild-essential-arm64 crossbuild-essential-armhf | ||
fi | ||
toolchain: ${{ matrix.info.rust }} | ||
target: ${{ matrix.info.target }} | ||
|
||
- name: Enable Rust cache | ||
uses: Swatinem/rust-cache@378c8285a4eaf12899d11bea686a763e906956af # 2.7.3 | ||
if: ${{ github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork }} # If it is a PR, only if not a fork | ||
with: | ||
key: ${{ matrix.info.target }} | ||
cache-all-crates: true | ||
|
||
- name: Try building with only default features enabled | ||
uses: ClementTsang/[email protected] | ||
if: ${{ matrix.info.no-default-features != true }} | ||
with: | ||
command: build | ||
args: --all-targets --verbose --target=${{ matrix.info.target }} --locked | ||
use-cross: ${{ matrix.info.cross }} | ||
cross-version: ${{ matrix.info.cross-version || '0.2.5' }} | ||
|
||
- name: Try building with no features enabled | ||
uses: ClementTsang/[email protected] | ||
if: ${{ matrix.info.no-default-features == true }} | ||
with: | ||
command: build | ||
args: --all-targets --verbose --target=${{ matrix.info.target }} --locked --no-default-features | ||
use-cross: ${{ matrix.info.cross }} | ||
cross-version: ${{ matrix.info.cross-version || '0.2.5' }} | ||
|
||
- name: Get the release version from the tag | ||
shell: bash | ||
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
|
||
# some additional configuration for cross-compilation on linux | ||
cat >>~/.cargo/config <<EOF | ||
[target.aarch64-unknown-linux-gnu] | ||
linker = "aarch64-linux-gnu-gcc" | ||
[target.aarch64-unknown-linux-musl] | ||
linker = "aarch64-linux-gnu-gcc" | ||
[target.armv7-unknown-linux-gnueabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
[target.armv7-unknown-linux-musleabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
[target.arm-unknown-linux-gnueabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
[target.arm-unknown-linux-musleabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
EOF | ||
- name: Install rust target | ||
run: rustup target add $TARGET | ||
- name: Run build | ||
run: cargo build --release --verbose --target $TARGET | ||
- name: List target | ||
run: find ./target | ||
- name: Compress | ||
- name: Build archive | ||
shell: bash | ||
run: | | ||
mkdir -p ./artifacts | ||
# windows is the only OS using a different convention for executable file name | ||
if [[ $OS =~ ^windows.*$ ]]; then | ||
EXEC=$NAME.exe | ||
# Replace with the name of your binary | ||
binary_name="<BINARY_NAME>" | ||
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.info.target }}" | ||
mkdir "$dirname" | ||
if [ "${{ matrix.info.os }}" = "windows-latest" ]; then | ||
mv "target/${{ matrix.info.target }}/release/$binary_name.exe" "$dirname" | ||
else | ||
EXEC=$NAME | ||
mv "target/${{ matrix.info.target }}/release/$binary_name" "$dirname" | ||
fi | ||
if [[ $GITHUB_REF_TYPE =~ ^tag$ ]]; then | ||
TAG=$GITHUB_REF_NAME | ||
|
||
if [ "${{ matrix.info.os }}" = "windows-latest" ]; then | ||
7z a "$dirname.zip" "$dirname" | ||
echo "ASSET=$dirname.zip" >> $GITHUB_ENV | ||
else | ||
TAG=$GITHUB_SHA | ||
tar -czf "$dirname.tar.gz" "$dirname" | ||
echo "ASSET=$dirname.tar.gz" >> $GITHUB_ENV | ||
fi | ||
mv ./target/$TARGET/release/$EXEC ./$EXEC | ||
tar -czf ./artifacts/$NAME-$TARGET-$TAG.tar.gz $EXEC | ||
- name: Archive artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: result | ||
path: | | ||
./artifacts | ||
# deploys to github releases on tag | ||
deploy: | ||
if: startsWith(github.ref, 'refs/tags/') | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: result | ||
path: ./artifacts | ||
- name: List | ||
run: find ./artifacts | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: ./artifacts/*.tar.gz | ||
files: | | ||
${{ env.ASSET }} | ||
completion: | ||
name: "Check" | ||
needs: [build-release] | ||
if: ${{ success() || failure() }} | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Relesead Success | ||
if: ${{ (needs.build-release.result == 'success') || (needs.build-release.result == 'skipped') }} | ||
run: | | ||
echo "Release completed successfully."; | ||
- name: Release Failed | ||
if: ${{ needs.build-release.result == 'failure' }} | ||
run: | | ||
echo "Release failed!"; | ||
exit 1; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters