-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-- remove lithium gui launcher -- add a cmd interface launcher -- upgrade the database creator -- add msys2 build github action -- fix bugs in cobalt-web -- rebase lithium-web, remove unnecessary files -- add definition of the addon in README.md
- Loading branch information
Showing
107 changed files
with
4,073 additions
and
12,529 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: MinGW | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
|
||
env: | ||
# Path to the solution file relative to the root of the project. | ||
SOLUTION_FILE_PATH: . | ||
|
||
# Configuration type to build. | ||
# You can convert this to a build matrix if you need coverage of multiple configuration types. | ||
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
BUILD_CONFIGURATION: Debug | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- { sys: mingw64, env: x86_64 } | ||
|
||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
|
||
steps: | ||
- uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: ${{matrix.sys}} | ||
update: true | ||
install: >- | ||
mingw-w64-${{matrix.env}}-openssl | ||
base-devel | ||
mingw-w64-${{matrix.env}}-cmake | ||
mingw-w64-${{matrix.env}}-gcc | ||
mingw-w64-${{matrix.env}}-libnova | ||
mingw-w64-${{matrix.env}}-dlfcn | ||
mingw-w64-${{matrix.env}}-cfitsio | ||
mingw-w64-${{matrix.env}}-fmt | ||
mingw-w64-${{matrix.env}}-zlib | ||
mingw-w64-${{matrix.env}}-libzip | ||
zlib-devel | ||
- name: Get INDI Sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build INDI Core | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. -DINDI_BUILD_SERVER=OFF -DINDI_BUILD_DRIVERS=OFF | ||
cmake --build . |
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
Oops, something went wrong.