-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (77 loc) · 1.89 KB
/
ada.yml
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
84
85
86
name: Ada (GNAT)
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Build
run: alr build
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Test
run: cd tests && alr run
examples:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Examples
run: cd examples && alr run
workshop:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Workshop
run: cd workshop && alr build
- name: Workshop Answers
run: cd workshop/tests && alr run
find_tool:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Find Tool
run: cd find_tool && alr build
find_and_replace_tool:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Find and Replace Tool
run: cd find_and_replace_tool && alr build
generator:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: alire-project/setup-alire@v1
- name: Generator
run: cd generator-developers_only && alr build