mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-22 21:15:09 +00:00
chore: temporary suppress native images
This commit is contained in:
parent
d2a5e0cd2e
commit
82d660de00
6
.github/scripts/release.sh
vendored
6
.github/scripts/release.sh
vendored
@ -10,9 +10,9 @@ ln -s "../libs/plantuml-${RELEASE_VERSION}.jar" "${RELEASE_DIR}
|
|||||||
ln -s "../libs/plantuml-${RELEASE_VERSION}-javadoc.jar" "${RELEASE_DIR}/plantuml-${RELEASE_VERSION}-javadoc.jar"
|
ln -s "../libs/plantuml-${RELEASE_VERSION}-javadoc.jar" "${RELEASE_DIR}/plantuml-${RELEASE_VERSION}-javadoc.jar"
|
||||||
ln -s "../libs/plantuml-${RELEASE_VERSION}-sources.jar" "${RELEASE_DIR}/plantuml-${RELEASE_VERSION}-sources.jar"
|
ln -s "../libs/plantuml-${RELEASE_VERSION}-sources.jar" "${RELEASE_DIR}/plantuml-${RELEASE_VERSION}-sources.jar"
|
||||||
ln -s "../libs/plantuml-pdf-${RELEASE_VERSION}.jar" "${RELEASE_DIR}/plantuml-pdf-${RELEASE_VERSION}.jar"
|
ln -s "../libs/plantuml-pdf-${RELEASE_VERSION}.jar" "${RELEASE_DIR}/plantuml-pdf-${RELEASE_VERSION}.jar"
|
||||||
ln -s "../libs/plantuml-linux-amd64-${RELEASE_VERSION}" "${RELEASE_DIR}/plantuml-linux-amd64-${RELEASE_VERSION}"
|
#ln -s "../libs/plantuml-linux-amd64-${RELEASE_VERSION}" "${RELEASE_DIR}/plantuml-linux-amd64-${RELEASE_VERSION}"
|
||||||
ln -s "../libs/plantuml-darwin-amd64-${RELEASE_VERSION}" "${RELEASE_DIR}/plantuml-darwin-amd64-${RELEASE_VERSION}"
|
#ln -s "../libs/plantuml-darwin-amd64-${RELEASE_VERSION}" "${RELEASE_DIR}/plantuml-darwin-amd64-${RELEASE_VERSION}"
|
||||||
ln -s "../libs/plantuml-win-amd64-${RELEASE_VERSION}.exe" "${RELEASE_DIR}/plantuml-win-amd64-${RELEASE_VERSION}.exe"
|
#ln -s "../libs/plantuml-win-amd64-${RELEASE_VERSION}.exe" "${RELEASE_DIR}/plantuml-win-amd64-${RELEASE_VERSION}.exe"
|
||||||
#ln -s "../plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}.jar" "${RELEASE_DIR}/plantuml-mit-${RELEASE_VERSION}.jar"
|
#ln -s "../plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}.jar" "${RELEASE_DIR}/plantuml-mit-${RELEASE_VERSION}.jar"
|
||||||
#ln -s "../plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}-sources.jar" "${RELEASE_DIR}/plantuml-mit-${RELEASE_VERSION}-sources.jar"
|
#ln -s "../plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}-sources.jar" "${RELEASE_DIR}/plantuml-mit-${RELEASE_VERSION}-sources.jar"
|
||||||
|
|
||||||
|
35
.github/workflows/ci.yml
vendored
35
.github/workflows/ci.yml
vendored
@ -150,20 +150,11 @@ jobs:
|
|||||||
key: "libs-${{ github.run_id }}"
|
key: "libs-${{ github.run_id }}"
|
||||||
enableCrossOsArchive: true
|
enableCrossOsArchive: true
|
||||||
|
|
||||||
native_images:
|
|
||||||
if: |
|
|
||||||
needs.workflow_config.outputs.do_release == 'true' ||
|
|
||||||
needs.workflow_config.outputs.do_snapshot_release == 'true'
|
|
||||||
needs: build_artifacts
|
|
||||||
uses: ./.github/workflows/native-image.yml
|
|
||||||
with:
|
|
||||||
release-version: ${{ needs.build_artifacts.outputs.release_version }}
|
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
if: |
|
if: |
|
||||||
needs.workflow_config.outputs.do_release == 'true' ||
|
needs.workflow_config.outputs.do_release == 'true' ||
|
||||||
needs.workflow_config.outputs.do_snapshot_release == 'true'
|
needs.workflow_config.outputs.do_snapshot_release == 'true'
|
||||||
needs: [ workflow_config, build_artifacts, native_images]
|
needs: [ workflow_config, build_artifacts ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the repository
|
- name: Checkout the repository
|
||||||
@ -186,30 +177,6 @@ jobs:
|
|||||||
fail-on-cache-miss: true
|
fail-on-cache-miss: true
|
||||||
enableCrossOsArchive: true
|
enableCrossOsArchive: true
|
||||||
|
|
||||||
- name: Restore Native-image-darwin-amd64 cache
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: "build/libs/plantuml-darwin-amd64-*"
|
|
||||||
key: "native-image-darwin-amd64-${{ github.run_id }}"
|
|
||||||
fail-on-cache-miss: true
|
|
||||||
enableCrossOsArchive: true
|
|
||||||
|
|
||||||
- name: Restore Native-image-win-amd64 cache
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: "build/libs/plantuml-win-amd64-*"
|
|
||||||
key: "native-image-win-amd64-${{ github.run_id }}"
|
|
||||||
fail-on-cache-miss: true
|
|
||||||
enableCrossOsArchive: true
|
|
||||||
|
|
||||||
- name: Restore Native-image-linux-amd64 cache
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: "build/libs/plantuml-linux-amd64-*"
|
|
||||||
key: "native-image-linux-amd64-${{ github.run_id }}"
|
|
||||||
fail-on-cache-miss: true
|
|
||||||
enableCrossOsArchive: true
|
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user