forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
422 changed files
with
53,516 additions
and
24,673 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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
exclude_paths: | ||
- 'deprecated/**' | ||
- 'mac/libusb/**' | ||
- 'reference/**' | ||
- 'shapelib/**' | ||
- 'strptime/**' | ||
- 'zlib/**' | ||
- coverity_model.cc | ||
- jeeps/gpsproj.cc | ||
- jeeps/gpsproj.h | ||
- tools/qtci/README.md | ||
- tools/uploadtool/README.md | ||
- "coverity_model.cc" | ||
- "deprecated/**" | ||
- "gui/coretool/gpsbabel_*.ts" | ||
- "gui/gpsbabelfe_*.ts" | ||
- "jeeps/gpsproj.cc" | ||
- "jeeps/gpsproj.h" | ||
- "mac/libusb/**" | ||
- "reference/**" | ||
- "shapelib/**" | ||
- "strptime/**" | ||
- "tools/uploadtool/README.md" | ||
- "zlib/**" |
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,59 @@ | ||
name: "gendocs" | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
schedule: | ||
- cron: '27 4 * * 2' | ||
workflow_dispatch: | ||
inputs: | ||
docversion: | ||
required: false | ||
type: string | ||
default: 'development' | ||
|
||
jobs: | ||
ubuntu: | ||
name: ubuntu Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- IMAGE: 'jammy' | ||
CMAKE_PREFIX_PATH: '/usr/lib/x86_64-linux-gnu/cmake/Qt6' | ||
SCRIPT: './tools/build_and_test_cmake.sh' | ||
RELEASE: true | ||
container: | ||
image: gpsbabel-docker.jfrog.io/tsteven4/gpsbabel_build_environment_${{ matrix.IMAGE }} | ||
env: | ||
LC_ALL: 'C.UTF-8' | ||
JOB_CMAKE_PREFIX_PATH: ${{ matrix.CMAKE_PREFIX_PATH }} | ||
JOB_SCRIPT: ${{ matrix.SCRIPT }} | ||
JOB_DOCVERSION: ${{ inputs.docversion }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: build_and_test | ||
run: | | ||
# when using containers manually whitelist the checkout directory to allow git commands to work | ||
git config --global --add safe.directory "${GITHUB_WORKSPACE}" | ||
if [ -n "${JOB_CMAKE_PREFIX_PATH}" ]; then | ||
CMAKE_PREFIX_PATH="${JOB_CMAKE_PREFIX_PATH}" | ||
export CMAKE_PREFIX_PATH | ||
fi | ||
"${JOB_SCRIPT}" "${JOB_DOCVERSION:-development}" | ||
- name: 'Upload Artifacts' | ||
if: matrix.RELEASE | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Documents | ||
path: | | ||
gpsbabel.org/ | ||
gpsbabel.pdf | ||
gpsbabel.html | ||
docbook.css | ||
retention-days: 7 |
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.