Files
IronOS/.github/workflows/ccpp.yml
Ben V. Brown 8a4b0af44d Testing
2020-09-06 11:10:06 +10:00

38 lines
845 B
YAML

name: C/C++ CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: chmod
run: chmod +x build.sh
- name: translation
run: |
cd Translation\ Editor
python3 make_translation.py
- name: make
run: ./build.sh
- name: Archive TS80 artifacts
uses: actions/upload-artifact@v2
with:
name: TS80
path: ci/artefacts/TS80_*
if-no-files-found: error
- name: Archive TS80P artifacts
uses: actions/upload-artifact@v2
with:
name: TS80P
path: ci/artefacts/TS80P_*
if-no-files-found: error
- name: Archive TS100 artifacts
uses: actions/upload-artifact@v2
with:
name: TS100
path: ci/artefacts/TS100_*
if-no-files-found: error