-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first attempt at execuiting our build in a github action
Change-Id: I1251da11da1d7512c73d04ce0b94d1b7000964e9
- Loading branch information
1 parent
fbe802d
commit 6448abe
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Flex CI | ||
on: | ||
push: | ||
branches: ["release/9.1", "develop", "master", "feature/PubSub"] | ||
pull_request: | ||
branches: ["release/9.1", "develop", "master", "feature/PubSub"] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout Files | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and Test | ||
shell: cmd | ||
working-directory: Build | ||
run: build64.bat /t:remakefw /p:action=test |