Skip to content

Commit

Permalink
feat(ci): add tag release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Bambooin committed Jan 15, 2022
1 parent 94bb5d5 commit aafe5a3
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/release-ci.yml
@@ -0,0 +1,61 @@
name: release ci
on:
push:
tags:
- "*"
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler: [g++, clang]
steps:
- name: Checkout last commit
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: "recursive"

- name: Install dependency
run: ./action-install-linux.sh

- name: Unit test
run: make test

- name: Upload artifactory
run: echo TODO
macos:
runs-on: macos-latest
steps:
- name: Checkout last commit
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: "recursive"

- name: Install dependency
run: ./action-install-macos.sh

- name: Unit test
run: make xcode/test

- name: Upload artifactory
run: echo TODO
windows:
runs-on: windows-latest
steps:
- name: Checkout last commit
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: "recursive"

- name: Install dependency
run: .\action-install-windows.bat

- name: Unit test
run: .\build.bat test

- name: Upload artifactory
run: echo TODO

0 comments on commit aafe5a3

Please sign in to comment.