-
Notifications
You must be signed in to change notification settings - Fork 4
31 lines (29 loc) · 1 KB
/
main.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
on: [push, pull_request]
jobs:
stc_rpncalc_ci_job:
runs-on: ubuntu-latest
name: Test building
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker layer cache
uses: satackey/action-docker-layer-caching@v0.0.8
- name: Docker
run: $GITHUB_WORKSPACE/steps/compose_build.sh
- name: Desktop build/check
run: $GITHUB_WORKSPACE/steps/compose_run.sh desktop_build_check.sh --rebuild
- name: Calc build
run: $GITHUB_WORKSPACE/steps/compose_run.sh build_calc.sh
- name: ls
run: ls $GITHUB_WORKSPACE
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: stc_rpncalc_artifacts
path: |
${{ github.workspace }}/build/
${{ github.workspace }}/build_qt/lcov/
${{ github.workspace }}/build_qt/decn.c.gcov
${{ github.workspace }}/build_qt/Testing/
${{ github.workspace }}/main.hex
if-no-files-found: error