add logging timestamp; server reconnect to manager #594
Workflow file for this run
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
name: Continuous integration | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_TOOLCHAIN: 1.68.0 | |
jobs: | |
build: | |
name: Continuous integration | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
- name: Install dependences | |
id: install_deps | |
run: make install_deps | |
- name: Copy cache | |
run: | | |
mkdir -p /data/action/_work/sealfs/sealfs/target | |
if [ -d /data/backup/debug ]; then | |
mv /data/backup/debug /data/action/_work/sealfs/sealfs/target | |
fi | |
- name: Build | |
id: make-build | |
run: | | |
make build | |
# make build features=mem-db | |
continue-on-error: true | |
- name: Check | |
id: cargo-check | |
run: | | |
cargo check --features=disk-db | |
# cargo check --features=mem-db | |
continue-on-error: true | |
- name: Test Suite | |
id: make-test | |
run: | | |
sudo rm -rf /tmp/test* | |
make test | |
./test_io500.sh /data | |
# make test features=mem-db | |
continue-on-error: true | |
- name: Clippy | |
id: cargo-clippy | |
run: | | |
rustup component add clippy | |
cargo clippy --features=disk-db -- -D warnings | |
# cargo clippy --features=mem-db -- -D warnings | |
continue-on-error: true | |
- name: Rustfmt | |
id: cargo-fmt | |
run: | | |
rustup component add rustfmt | |
cargo fmt --all -- --check | |
continue-on-error: true | |
- if: always() | |
name: Backup Temporary | |
run: | | |
if [ -d /data/action/_work/sealfs/sealfs/target/debug ]; then | |
if [ -d /data/backup/debug ]; then | |
rm -rf /data/backup/debug | |
fi | |
mv /data/action/_work/sealfs/sealfs/target/debug /data/backup | |
fi | |
- if: ${{ steps.install_deps.outcome == 'success' }} | |
name: Summary | |
run: | | |
echo "Build: ${{ steps.make-build.outcome }}" | |
echo "Check: ${{ steps.cargo-check.outcome }}" | |
echo "Test: ${{ steps.make-test.outcome }}" | |
echo "Clippy: ${{ steps.cargo-clippy.outcome }}" | |
echo "Rustfmt: ${{ steps.cargo-fmt.outcome }}" | |
if [ "${{ steps.make-build.outcome }}" != "success" ] || [ "${{ steps.cargo-check.outcome }}" != "success" ] || [ "${{ steps.make-test.outcome }}" != "success" ] || [ "${{ steps.cargo-clippy.outcome }}" != "success" ] || [ "${{ steps.cargo-fmt.outcome }}" != "success" ]; then | |
exit 1 | |
fi |