Skip to content

Commit

Permalink
Add github build actions for windows and linux builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvzkupu committed Aug 8, 2024
2 parents cd206bf + 3bffba4 commit cfd10cf
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Linux

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build-linux:
runs-on: ubuntu-24.04

steps:
- name: Build Linux
shell: bash
run: ./build.sh --rebuild --release
18 changes: 18 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Windows

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build-windows:
runs-on: windows-2022

steps:
- name: Build Windows
shell: powershell
run: |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
. .\build.bat --rebuild --release
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Create 2024.4.1 build
- REMIX-2988: Added manual CI test to measure app startup times
- REMIX-3401: Added Centralized Generic factory
- Add github windows and linux build actions

### Changed
- REMIX-3401: Changed all usages of factories to use the Centralized Generic factory
Expand Down

0 comments on commit cfd10cf

Please sign in to comment.