This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 2.07 KB
/
c-cpp.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: C/C++ CI
on:
pull_request:
push:
branches: [ "main" ]
jobs:
build:
name: 'Build Project'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get SDK Version
shell: bash
run: |
echo "VERSION=$(curl -s https://content.vexrobotics.com/vexos/public/V5/vscode/sdk/cpp/manifest.json |grep latest |grep -o "V5[^\"]*")" >> "$GITHUB_ENV"
- name: Download SDK
uses: wei/curl@master
with:
args: https://content.vexrobotics.com/vexos/public/V5/vscode/sdk/cpp/${{ env.VERSION }}.zip --output sdk.zip
- name: Unzip SDK
uses: montudor/action-zip@v1
with:
args: unzip -qq sdk.zip
- name: Download Toolchain
uses: wei/curl@master
with:
args: https://content.vexrobotics.com/vexos/public/vscode/toolchain/linux/toolchain_linux64.zip --output tools.zip
- name: Unzip Toolchain
uses: montudor/action-zip@v1
with:
args: unzip -qq tools.zip
- shell: bash
run: |
sudo chmod +x toolchain_linux64/gcc/bin/*
- run: PATH=${PATH}:toolchain_linux64/gcc/bin make VEX_SDK_PATH=${{ env.VERSION }}
- name: Expose git commit data
if: ${{ failure() && github.event_name == 'push' }}
uses: rlespinasse/git-commit-data-action@v1
- name: Send Slack Notification
if: ${{ failure() && github.event_name == 'push' }}
id: slack
uses: slackapi/slack-github-action@v1.24.0
with:
channel-id: 'github-updates'
slack-message: ":x: _*Oopsie Woopsie! Build Failed in <${{ github.server_url }}/${{ github.repository }}|${{ github.repository }}>*_\n\n> Branch: <${{ github.server_url }}/${{ github.repository }}/tree/${{ github.ref_name }}|${{ github.ref_name }}>\n> Commit Ref: <${{ github.server_url }}/${{ github.repository }}/commit/${{ env.GIT_COMMIT_SHA }}|${{ env.GIT_COMMIT_SHORT_SHA }}>\n> Commit Message: ${{ env.GIT_COMMIT_MESSAGE_SUBJECT }}\n> Author: ${{ env.GIT_COMMIT_COMMITTER }} \n\nPlease fix as soon as possible!"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}