Skip to content

Commit

Permalink
chore(manager): move the manager
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Feb 6, 2024
1 parent 6356371 commit b510c6c
Show file tree
Hide file tree
Showing 251 changed files with 62,538 additions and 1,152 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test
name: Build and Test - Client

concurrency:
group: ${{ github.head_ref || github.ref }}
Expand All @@ -15,8 +15,9 @@ on:

# TODO: run go tests
jobs:

web_test:
name: Web Test
name: Client Web Test
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -47,7 +48,7 @@ jobs:
flags: unittests, www

linux_debug_build:
name: Linux Debug Build
name: Linux Client Debug Build
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: web_test
Expand All @@ -73,7 +74,7 @@ jobs:
run: npm run action electron/build linux

windows_debug_build:
name: Windows Debug Build
name: Windows Client Debug Build
runs-on: windows-2019
timeout-minutes: 10
needs: web_test
Expand Down Expand Up @@ -102,7 +103,7 @@ jobs:
run: npm run action electron/build windows

macos_debug_build:
name: MacOS Debug Build
name: MacOS Client Debug Build
runs-on: macos-13
timeout-minutes: 20
needs: web_test
Expand Down Expand Up @@ -143,7 +144,7 @@ jobs:
flags: unittests, apple, macos

ios_debug_build:
name: iOS Debug Build
name: iOS Client Debug Build
runs-on: macos-13
timeout-minutes: 20
needs: web_test
Expand Down Expand Up @@ -184,7 +185,7 @@ jobs:
flags: unittests, apple, ios

maccatalyst_debug_build:
name: Mac Catalyst Debug Build
name: Mac Catalyst Client Debug Build
runs-on: macos-13
timeout-minutes: 20
needs: web_test
Expand Down Expand Up @@ -225,7 +226,7 @@ jobs:
flags: unittests, apple, maccatalyst

android_debug_build:
name: Android Debug Build
name: Android Client Debug Build
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: web_test
Expand Down
123 changes: 123 additions & 0 deletions .github/workflows/build_and_test_debug_manager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
name: Build and Test - Manager

concurrency:
group: ${{ github.head_ref || github.ref }}
cancel-in-progress: true

on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- master

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install NPM Dependencies
run: npm ci

- name: Lint
run: npm run lint

web_test:
name: Manager Web Test
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/[email protected]

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install NPM Dependencies
run: npm ci

- name: Manager Web Test
run: npm run action server_manager/test

linux_debug_build:
name: Linux Manager Debug Build
runs-on: ubuntu-latest
needs: web_test
env:
SENTRY_DSN: debug
steps:
- name: Checkout
uses: actions/[email protected]

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install NPM Dependencies
run: npm ci

- name: Build Linux Manager
run: npm run action server_manager/electron_app/build linux

windows_debug_build:
name: Windows Manager Debug Build
runs-on: windows-2019
needs: web_test
env:
SENTRY_DSN: debug
steps:
- name: Checkout
uses: actions/[email protected]

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install NPM Dependencies
run: npm ci

- name: Build Windows Manager
run: npm run action server_manager/electron_app/build windows

mac_debug_build:
name: MacOS Manager Debug Build
runs-on: macos-11
needs: web_test
env:
SENTRY_DSN: debug
steps:
- name: Checkout
uses: actions/[email protected]

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install NPM Dependencies
run: npm ci

- name: Set XCode Version
run: sudo xcode-select -switch /Applications/Xcode_13.2.app

- name: Build MacOS Manager
run: npm run action server_manager/electron_app/build macos
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.pdb
*.sw?
/node_modules
/server_manager/node_modules
/build
/output
/platforms
Expand Down
22 changes: 13 additions & 9 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,24 @@ module.exports = {
'always',
[
'build',
'cordova',
'cordova/android',
'cordova/apple',
'cordova/apple/ios',
'cordova/apple/macos',
'client/cordova',
'client/cordova/android',
'client/cordova/apple',
'client/cordova/apple/ios',
'client/cordova/apple/macos',
'client/electron',
'client/electron/linux',
'client/electron/windows',
'devtools',
'docs',
'electron',
'electron/linux',
'electron/windows',
'www',
'manager',
'manager/linux',
'manager/mac',
'manager/windows',
'service',
'service/linux',
'service/windows',
'www',
],
],
},
Expand Down
Loading

0 comments on commit b510c6c

Please sign in to comment.