FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fast-ruby/.github/workflows/benchmarks.yml at main · fastruby/fast-ruby · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
fastruby
/
fast-ruby
Public
Notifications
You must be signed in to change notification settings
Fork
371
Star
5.7k
Code
Issues
30
Pull requests
16
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
fast-ruby
/
.github
/
workflows
/
benchmarks.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
81 lines (71 loc) · 1.86 KB
Breadcrumbs
fast-ruby
/
.github
/
workflows
/
benchmarks.yml
Copy path
File metadata and controls
81 lines (71 loc) · 1.86 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name
:
Benchmarks
on
:
push
:
branches
:
[ main ]
pull_request
:
branches
:
[ main ]
jobs
:
rake
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
ruby-version
:
[
'
ruby-head
'
, '3.2', '3.1', '3.0', '2.7', '2.6', '2.5', '2.4',
'
jruby-head
'
,
'
truffleruby-head
'
]
steps
:
-
name
:
Set Share Env
if
:
github.ref_name == 'main'
run
:
|
echo "SHARE=1" >> $GITHUB_ENV
-
uses
:
actions/checkout@v3
-
name
:
Set up Ruby ${{ matrix.ruby-version }}
uses
:
ruby/setup-ruby@v1
with
:
ruby-version
:
${{ matrix.ruby-version }}
-
name
:
Install dependencies
run
:
bundle install
-
name
:
Run benchmarks
run
:
bundle exec rake
rake_old
:
runs-on
:
ubuntu-22.04
strategy
:
matrix
:
ruby-version
:
[
'
jruby-9.1
'
,
'
truffleruby-22
'
]
steps
:
-
name
:
Set Share Env
if
:
github.ref_name == 'main'
run
:
|
echo "SHARE=1" >> $GITHUB_ENV
-
uses
:
actions/checkout@v3
-
name
:
Set up Ruby ${{ matrix.ruby-version }}
uses
:
ruby/setup-ruby@v1
with
:
ruby-version
:
${{ matrix.ruby-version }}
-
name
:
Install dependencies
run
:
bundle install
-
name
:
Run benchmarks
run
:
bundle exec rake
rake_older
:
runs-on
:
ubuntu-20.04
strategy
:
matrix
:
ruby-version
:
['2.3', '2.2', '2.1']
steps
:
-
name
:
Set Share Env
if
:
github.ref_name == 'main'
run
:
|
echo "SHARE=1" >> $GITHUB_ENV
-
uses
:
actions/checkout@v3
-
name
:
Set up Ruby ${{ matrix.ruby-version }}
uses
:
ruby/setup-ruby@v1
with
:
ruby-version
:
${{ matrix.ruby-version }}
-
name
:
Install dependencies
run
:
bundle install
-
name
:
Run benchmarks
run
:
bundle exec rake
Back
|
FazBrowse Home
|
New Git URL