-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (41 loc) · 1013 Bytes
/
build.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
name: Build Project w/ PROS
on:
push:
branches: '*'
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
name: PROS CI Test
runs-on: ubuntu-latest
steps:
- name: Get short SHA
uses: benjlevesque/[email protected]
id: short-sha
with:
length: 6
- name: Set short SHA
run: echo $SHA
env:
SHA: ${{ steps.short-sha.outputs.sha }}
- name: Install ARM Toolchain
uses: fiam/[email protected]
with:
release: "10-2020-q4"
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: PIP Installer
uses: BSFishy/pip-action@v1
with:
packages: pros-cli
- name: Testing PROS Install
run: pros --version
- name: Checkout
uses: actions/checkout@v3
- name: Build PROS Project
run: make -j