https://github.com/Kitware/CMake
Revision 6eea123e3a97a6dce3b059777b688a49429bb951 authored by Brad King on 09 July 2021, 14:56:52 UTC, committed by Brad King on 09 July 2021, 15:04:52 UTC
Since commit 84036d30d4 (IntelLLVM: Fix C/C++ standard level flags on
Windows, 2021-07-07, v3.21.0-rc3~8^2~1) we activate C/C++ standard level
logic for IntelLLVM when targeting the MSVC ABI.  Update the
`RunCMake.try_compile` test to be aware of this even when CMake is
itself configured by an older CMake that does not know this.
1 parent 554ebf6
Raw File
Tip revision: 6eea123e3a97a6dce3b059777b688a49429bb951 authored by Brad King on 09 July 2021, 14:56:52 UTC
Tests: Fix RunCMake.try_compile C/CXX standards with IntelLLVM MSVC mode
Tip revision: 6eea123
upload.yml
# Steps for uploading artifacts

.rsync_upload_binary:
    image: "fedora:34"
    stage: upload
    tags:
        - cmake
        - docker
        - linux
        - build
    environment:
        name: rsync-upload

    script:
        - ls build/
        - dnf install -y --setopt=install_weak_deps=False rsync openssh-clients
        - chmod 400 $RSYNC_BINARY_KEY
        - ssh-keygen -y -f $RSYNC_BINARY_KEY > $RSYNC_BINARY_KEY.pub
        - rsync -tv --recursive -e "ssh -i $RSYNC_BINARY_KEY -o StrictHostKeyChecking=no -o LogLevel=ERROR" build/ kitware@cmake.org:$RSYNC_DESTINATION/

.rsync_upload_help:
    stage: upload
    image: "fedora:34"
    tags:
        - cmake
        - docker
        - linux
        - build
    environment:
        name: rsync-upload

    script:
        - ls build/html/index.html
        - dnf install -y --setopt=install_weak_deps=False rsync openssh-clients
        - chmod 400 $RSYNC_HELP_KEY
        - ssh-keygen -y -f $RSYNC_HELP_KEY > $RSYNC_HELP_KEY.pub
        - rsync -tv --recursive --delete -e "ssh -i $RSYNC_HELP_KEY -o StrictHostKeyChecking=no -o LogLevel=ERROR" build/html/ kitware@cmake.org:$RSYNC_DESTINATION/
back to top