File tree Expand file tree Collapse file tree 2 files changed +26
-20
lines changed Expand file tree Collapse file tree 2 files changed +26
-20
lines changed Original file line number Diff line number Diff line change 9
9
AWS_ACCESS_KEY_ID : AKIA46X5W6CZBLO3VBND
10
10
11
11
jobs :
12
- ci :
13
- name : CI
12
+ test_and_deploy :
13
+ name : Test and deploy
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Checkout the source code
32
32
aws_access_key_id : " ${{ env.AWS_ACCESS_KEY_ID }}"
33
33
aws_secret_access_key : " ${{ secrets.AWS_SECRET_ACCESS_KEY }}"
34
34
if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/deploy'
35
+ test_benchmarks_1 :
36
+ name : Benchmark test 1
37
+ runs-on : ubuntu-latest
38
+ steps :
39
+ - name : Checkout the source code
40
+ uses : actions/checkout@v2
41
+ with :
42
+ fetch-depth : 1
43
+
44
+ - name : Install latest nightly
45
+ uses : actions-rs/toolchain@v1
46
+ with :
47
+ toolchain : nightly
48
+ override : true
49
+
50
+ - name : Configure environment
51
+ run : |
52
+ sudo apt-get update
53
+ sudo apt-get install -y linux-tools-common linux-tools-generic linux-tools-`uname -r`
54
+ echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
55
+
56
+ - name : Check benchmarks
57
+ run : sh -x -c "ci/check-benchmarks.sh"
58
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments