This repository was archived by the owner on Nov 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (82 loc) · 1.99 KB
/
Copy pathcase-studies.yml
File metadata and controls
83 lines (82 loc) · 1.99 KB
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
82
83
name: "Run case studies"
on: workflow_dispatch
jobs:
case-studies:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
app:
- angular-dart
- angular2
- angular2_es2015
- angularjs
- angularjs_require
- aurelia
- backbone
- backbone_marionette
- backbone_require
- binding-scala
- canjs
- canjs_require
- closure
- dijon
- dojo
- duel
- elm
- emberjs
- enyo_backbone
- exoskeleton
- jquery
- js_of_ocaml
- jsblocks
- knockback
- knockoutjs
- knockoutjs_require
- kotlin-react
- lavaca_require
- mithril
- polymer
- ractive
- react
- react-alt
- react-backbone
- reagent
- riotjs
- scalajs-react
- typescript-angular
- typescript-backbone
- typescript-react
- vanilla-es6
- vanillajs
- vue
# non-todomvc
# - timer
steps:
- uses: actions/checkout@v2.3.1
- uses: cachix/install-nix-action@v12
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
experimental-features = nix-command
- uses: cachix/cachix-action@v8
with:
name: quickstrom
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: nix show-config
- name: Prepare nix shell
run: |
pushd case-studies
nix-shell --command "echo Done"
popd
- name: Run test
run: |
pushd case-studies
nix-shell --command "./run.py results ${{matrix.app}}"
popd
- name: Archive results
if: always()
uses: actions/upload-artifact@v2
with:
name: test-results-${{matrix.app}}
path: case-studies/results/${{matrix.app}}.*.*