generated from ut-issl/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from ut-issl/develop
Update main (v3.6.0) on 2022-06-29
- Loading branch information
Showing
389 changed files
with
20,969 additions
and
17,908 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.10 |
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
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,93 @@ | ||
name: build with S2E | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
|
||
env: | ||
S2E_CORE_VERSION: v5.0.0 | ||
|
||
jobs: | ||
build_s2e_win: | ||
name: Build on Windows VS2022 | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- name: checkout S2E core | ||
uses: actions/checkout@v3 | ||
with: | ||
path: s2e-core | ||
repository: ut-issl/s2e-core | ||
ref: '${{ env.S2E_CORE_VERSION }}' | ||
fetch-depth: 1 | ||
|
||
- name: checkout S2E user | ||
uses: actions/checkout@v3 | ||
with: | ||
path: s2e-user | ||
repository: ut-issl/s2e-user-for-c2a-core | ||
fetch-depth: 1 | ||
|
||
- name: checkout C2A user | ||
uses: actions/checkout@v3 | ||
with: | ||
path: c2a-core | ||
|
||
- name: setup C2A | ||
shell: cmd | ||
working-directory: c2a-core | ||
run: setup.bat | ||
|
||
- name: Configure build for x86 | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
with: | ||
arch: amd64_x86 | ||
|
||
- name: cache extlib | ||
id: cache-extlib | ||
uses: actions/cache@v3 | ||
with: | ||
key: extlib-${{ runner.os }}-${{ hashFiles('./s2e-core/ExtLibraries/**') }} | ||
path: ./s2e-core/ExtLibraries | ||
|
||
- name: build extlib | ||
if: steps.cache-extlib.outputs.cache-hit != 'true' | ||
shell: powershell | ||
working-directory: ./s2e-core/ExtLibraries | ||
run: | | ||
$extlib_dir=(pwd).Path | ||
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_CONFIGURATION_TYPES:STRING="Debug" -DEXT_LIB_DIR="${extlib_dir}" | ||
cmake --build . --clean-first | ||
- name: install extlib | ||
if: steps.cache-extlib.outputs.cache-hit != 'true' | ||
shell: powershell | ||
working-directory: ./s2e-core/ExtLibraries | ||
run: | | ||
cmake --install . | ||
- name: check extlib | ||
shell: powershell | ||
working-directory: ./s2e-core/ExtLibraries | ||
run: | | ||
ls cspice | ||
ls cspice/cspice_msvs/lib | ||
ls cspice/include | ||
ls cspice/generic_kernels | ||
ls nrlmsise00 | ||
ls nrlmsise00/table | ||
ls nrlmsise00/lib | ||
ls nrlmsise00/lib/libnrlmsise00.lib | ||
ls nrlmsise00/src | ||
- name: build | ||
working-directory: ./s2e-user | ||
shell: cmd | ||
run: | | ||
cl.exe | ||
cmake --version | ||
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_CONFIGURATION_TYPES:STRING="Debug" -DEXT_LIB_DIR=../s2e-core/ExtLibraries -DFLIGHT_SW_DIR=../c2a-core -DC2A_NAME=Examples/minimum_user -DUSE_C2A=ON | ||
cmake --build . --clean-first |
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
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
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,22 @@ | ||
name: validate / renovate.json | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'renovate.json' | ||
- '.github/workflows/validate-renovate.yml' | ||
|
||
jobs: | ||
validate-renovate: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
|
||
- name: install | ||
run: | | ||
npm install -g renovate | ||
- name: validate | ||
run: | | ||
renovate-config-validator |
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,15 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
project(C2A_CORE_TEST_APPS) | ||
|
||
set(C2A_SRCS | ||
test_ccp_util.c | ||
) | ||
|
||
if(BUILD_C2A_AS_CXX) | ||
set_source_files_properties(${C2A_SRCS} PROPERTIES LANGUAGE CXX) # C++ | ||
endif() | ||
|
||
add_library(${PROJECT_NAME} OBJECT ${C2A_SRCS}) | ||
|
||
include(${C2A_CORE_DIR}/common.cmake) |
Oops, something went wrong.