mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-16 17:20:33 +00:00
* chore: Add copyright and license headers This commit adds the Apache 2.0 license and a copyright notice to the header of all source files. This ensures that the licensing and copyright information is clearly stated within the codebase. * cargo fmt * fix * fmt * fix clippy
82 lines
2.7 KiB
YAML
82 lines
2.7 KiB
YAML
# Copyright 2024 RustFS Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
name: Profile with Samply
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
jobs:
|
|
profile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
with:
|
|
components: llvm-tools-preview
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Install samply
|
|
uses: taiki-e/cache-cargo-install-action@v2
|
|
with:
|
|
tool: samply
|
|
|
|
- name: Configure kernel for profiling
|
|
run: echo '1' | sudo tee /proc/sys/kernel/perf_event_paranoid
|
|
|
|
- name: Create test volumes
|
|
run: |
|
|
for i in {0..4}; do
|
|
mkdir -p ./target/volume/test$i
|
|
done
|
|
|
|
- name: Set environment variables
|
|
run: |
|
|
echo "RUSTFS_VOLUMES=./target/volume/test{0...4}" >> $GITHUB_ENV
|
|
echo "RUST_LOG=rustfs=info,ecstore=info,s3s=info,iam=info,rustfs-obs=info" >> $GITHUB_ENV
|
|
|
|
- name: Download static files
|
|
run: |
|
|
curl -L "https://dl.rustfs.com/artifacts/console/rustfs-console-latest.zip" -o tempfile.zip && unzip -o tempfile.zip -d ./rustfs/static && rm tempfile.zip
|
|
|
|
- name: Build with profiling
|
|
run: |
|
|
RUSTFLAGS="-C force-frame-pointers=yes" cargo +nightly build --profile profiling -p rustfs --bins
|
|
|
|
- name: Run samply with timeout
|
|
id: samply_record
|
|
run: |
|
|
timeout 120s samply record --output samply.json ./target/profiling/rustfs ${RUSTFS_VOLUMES}
|
|
if [ -f "samply.json" ]; then
|
|
echo "profile_generated=true" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "profile_generated=false" >> $GITHUB_OUTPUT
|
|
echo "::error::Failed to generate profile data"
|
|
fi
|
|
|
|
- name: Upload profile data
|
|
if: steps.samply_record.outputs.profile_generated == 'true'
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: samply-profile-${{ github.run_number }}
|
|
path: samply.json
|
|
retention-days: 7 |