mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
7ef0511f35
* closes #759
Squashed commit of the following:
commit 3d94ee14aeaf9a868dbeed4b65f90ccdda1f08d6
Author: Mohammed Sohail <sohailsameja@gmail.com>
Date: Thu Dec 7 11:49:07 2023 +0300
ci: upgrade benchstat actions, go version -> 1.21.x
commit 129e225311
Author: angshumukherjee100 <angshumukherjee100@gmail.com>
Date: Sun Oct 8 11:20:43 2023 +0530
(workflow): bump go version to 1.18 in benchstat
83 lines
2.1 KiB
YAML
83 lines
2.1 KiB
YAML
# This workflow runs benchmarks against the current branch,
|
|
# compares them to benchmarks against master,
|
|
# and uploads the results as an artifact.
|
|
|
|
name: benchstat
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
incoming:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- 6379:6379
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.21.x
|
|
- name: Benchmark
|
|
run: go test -run=^$ -bench=. -count=5 -timeout=60m ./... | tee -a new.txt
|
|
- name: Upload Benchmark
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bench-incoming
|
|
path: new.txt
|
|
|
|
current:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- 6379:6379
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.21.x
|
|
- name: Benchmark
|
|
run: go test -run=^$ -bench=. -count=5 -timeout=60m ./... | tee -a old.txt
|
|
- name: Upload Benchmark
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bench-current
|
|
path: old.txt
|
|
|
|
benchstat:
|
|
needs: [incoming, current]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.21.x
|
|
- name: Install benchstat
|
|
run: go get -u golang.org/x/perf/cmd/benchstat
|
|
- name: Download Incoming
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: bench-incoming
|
|
- name: Download Current
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: bench-current
|
|
- name: Benchstat Results
|
|
run: benchstat old.txt new.txt | tee -a benchstat.txt
|
|
- name: Upload benchstat results
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: benchstat
|
|
path: benchstat.txt
|