Skip to content

Commit

Permalink
Add first attempt at execuiting our build in a github action
Browse files Browse the repository at this point in the history
Change-Id: I1251da11da1d7512c73d04ce0b94d1b7000964e9
  • Loading branch information
jasonleenaylor committed Feb 8, 2024
1 parent fbe802d commit 6448abe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*.vcxproj -whitespace
*.vcxproj.filters -whitespace
*.vdproj -whitespace
*.yml -whitespace
*.xml -whitespace
changelog -whitespace
FwHelpAbout.cs -whitespace
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/CI.yml
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

0 comments on commit 6448abe

Please sign in to comment.