ModuleManager: Call stop() when start() lifecycle is ending #64
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
name: Nightly Builder | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Set up Python 3.9 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: sudo apt install git -y | |
- name: Launch Prebuild Script | |
shell: bash | |
run: python tools/prebuild.py $(git rev-parse --short HEAD) devel | |
- name: Prepare Build ModularKit | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8.0' | |
distribution: 'adopt' | |
- name: Build ModularKit | |
run: make clean build-nightly | |
- name: Archive Build result | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ModularKit | |
path: target/ |