Skip to content

Commit 75df350

Browse files
author
Ariel Ben-Yehuda
committed
move async-profiler-agent to a directory
1 parent 7c1e836 commit 75df350

File tree

17 files changed

+31
-0
lines changed

17 files changed

+31
-0
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- name: Build
1717
uses: ./.github/actions/rust-build
18+
working-directory: async-profiler-agent
1819
with:
1920
toolchain: ${{ matrix.toolchain }}
2021

.github/workflows/format.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- name: Run fmt check
1515
id: cargoFmt
1616
shell: bash
17+
working-directory: async-profiler-agent
1718
run: cargo fmt --all -- --check
1819
clippy:
1920
name: Cargo clippy
@@ -25,4 +26,5 @@ jobs:
2526
- name: Run clippy check
2627
id: cargoClippy
2728
shell: bash
29+
working-directory: async-profiler-agent
2830
run: cargo clippy --workspace --all-features -- -D warnings

.github/workflows/release-tmp.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Publish release
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
pull_request:
9+
10+
jobs:
11+
release-plz-release:
12+
if: github.repository_owner == 'async-profiler'
13+
name: Release-plz release
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
- name: Install Rust toolchain
22+
uses: dtolnay/rust-toolchain@stable
23+
- name: Run release-plz
24+
uses: release-plz/action@v0.5.102
25+
with:
26+
command: release
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

examples/simple/main.rs renamed to async-profiler-agent/examples/simple/main.rs

File renamed without changes.

examples/simple/slow.rs renamed to async-profiler-agent/examples/simple/slow.rs

File renamed without changes.

0 commit comments

Comments
 (0)