Compare commits
12 Commits
master
...
add-bug-tr
Author | SHA1 | Date | |
---|---|---|---|
|
6636cbb104 | ||
|
b86b58079d | ||
|
3fc9fe49a0 | ||
|
0a5e8629d0 | ||
|
d371fefc86 | ||
|
b5f5bd80bf | ||
|
7fee19efd5 | ||
|
4f0cf702fc | ||
|
fff91bee41 | ||
|
1601a03e88 | ||
|
0c1f4ae11c | ||
|
5e3a93f15a |
44
.github/workflows/bug_tracking.yaml
vendored
Normal file
44
.github/workflows/bug_tracking.yaml
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
name: Bug tracking
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
schedule:
|
||||
- cron: "0 */2 * * *"
|
||||
|
||||
jobs:
|
||||
debug_benchmarks:
|
||||
name: "Debug benchmarks"
|
||||
runs-on: [self-hosted, Linux, X64, Diff, Gen7]
|
||||
env:
|
||||
THREADS: 24
|
||||
MEMGRAPH_ENTERPRISE_LICENSE: ${{ secrets.MEMGRAPH_ENTERPRISE_LICENSE }}
|
||||
MEMGRAPH_ORGANIZATION_NAME: ${{ secrets.MEMGRAPH_ORGANIZATION_NAME }}
|
||||
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
# Number of commits to fetch. `0` indicates all history for all
|
||||
# branches and tags. (default: 1)
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Build release binaries
|
||||
run: |
|
||||
# Activate toolchain.
|
||||
source /opt/toolchain-v4/activate
|
||||
|
||||
# Initialize dependencies.
|
||||
./init
|
||||
|
||||
# Build only memgraph release binaries.
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=DebugWithReleaseInfo ..
|
||||
make -j$THREADS
|
||||
|
||||
- name: Run macro benchmarks
|
||||
run: |
|
||||
cd tests/macro_benchmark
|
||||
./harness QuerySuite MemgraphRunner \
|
||||
--groups aggregation 1000_create unwind_create dense_expand match \
|
||||
--no-strict
|
Loading…
Reference in New Issue
Block a user