mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
38 lines
845 B
YAML
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
|