Vimx, BFast #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build merged C++ | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
############### | |
### CodeGen ### | |
############### | |
run_codegen: | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
run: dotnet build ./src/cs/vim/Vim.Format.CodeGen/Vim.Format.CodeGen.csproj | |
############### | |
##### C++ ##### | |
############### | |
build_cpp_merged: | |
needs: run_codegen | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
run-codegen: true | |
run: ./build-cpp-tests.sh | |
working-directory: ./devops | |
test_cpp_merged: | |
if: ${{ success() }} | |
needs: build_cpp_merged | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
lfs: true | |
run-codegen: true | |
run: ./run-cpp-tests.sh | |
working-directory: ./devops | |
############## | |
##### C# ##### | |
############## | |
build_cs_merged: | |
needs: run_codegen | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
run-codegen: true | |
run: dotnet build ./src/cs/vim-format.sln -c Release | |
test_cs_merged: | |
if: ${{ success() }} | |
needs: build_cs_merged | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
lfs: true | |
run-codegen: true | |
run: dotnet test ./src/cs/vim-format.sln | |
############## | |
##### TS ##### | |
############## | |
build_ts_merged: | |
needs: run_codegen | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
run-codegen: true | |
run: npm install && npm run build | |
working-directory: ./src/ts | |
test_ts_merged: | |
if: ${{ success() }} | |
needs: build_ts_merged | |
uses: ./.github/workflows/merge-and-run.yaml | |
with: | |
lfs: true | |
run-codegen: true | |
run: npm install && npm test | |
working-directory: ./src/ts |