Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(manager): move the manager and rename the repository to outline_apps #1834

Merged
merged 15 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading