-
Notifications
You must be signed in to change notification settings - Fork 5
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 #136 from Goddard-Fortran-Ecosystem/develop
Develop
- Loading branch information
Showing
10 changed files
with
177 additions
and
41 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,22 @@ | ||
name: "Enforce Changelog" | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | ||
|
||
jobs: | ||
# Enforces the update of a changelog file on every pull request | ||
changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dangoslen/changelog-enforcer@v3 | ||
with: | ||
changeLogPath: 'ChangeLog.md' | ||
skipLabels: 'Skip Changelog' | ||
missingUpdateErrorMessage: > | ||
No update to ChangeLog.md found! Please add a changelog | ||
entry to it describing your change. Please note that the | ||
keepachangelog (https://keepachangelog.com) format is | ||
used. If your change is very trivial not applicable for a | ||
changelog entry, add a 'Skip Changelog' label to the pull | ||
request to skip the changelog enforcer. | ||
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright © 2017 United States Government as represented by the | ||
Administrator of the National Aeronautics and Space Administration. No | ||
copyright is claimed in the United States under Title 17, | ||
U.S. Code. All Other Rights Reserved. | ||
Copyright © 2021 United States Government as represented by the | ||
Administrator of the National Aeronautics and Space | ||
Administration. All Rights Reserved. | ||
|
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,11 @@ | ||
NASA Docket No. GSC-18,866-1, and identified as " Continuous Integration and CMake Packaging extensions for fArgParse | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
File renamed without changes.
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,14 @@ | ||
if (CMAKE_Fortran_COMPILER_ID MATCHES Fujitsu) | ||
if (CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 4.10.0) | ||
message(FATAL_ERROR "${CMAKE_Fortran_COMPILER_ID} version must be at least 4.10.0!") | ||
endif () | ||
endif () | ||
|
||
# Compiler specific flags for Fujitsu Fortran compiler | ||
|
||
set(check_all "-Nquickdbg") | ||
set(cpp "-Cfpp") | ||
|
||
set(CMAKE_Fortran_FLAGS_DEBUG "-O0 ${check_all}") | ||
set(CMAKE_Fortran_FLAGS_RELEASE "-O3") | ||
set(CMAKE_Fortran_FLAGS "-g ${cpp} -Nalloc_assign -Free") |
File renamed without changes.
File renamed without changes.