|
23 | 23 | fail-fast: false
|
24 | 24 | matrix:
|
25 | 25 | include:
|
26 |
| - # - { name: "MSVC 14.3 - C++20", os: windows-2022, cxxstd: '20', cmake_args: -G "Visual Studio 17 2022" -A x64, github_release: true } |
| 26 | + - { name: "MSVC 14.3 - C++20", os: windows-2022, cxxstd: '20', cmake_args: -G "Visual Studio 17 2022" -A x64, github_release: true } |
27 | 27 | - { name: "GCC 12 - C++20", os: ubuntu-22.04, cc: gcc-12, cxx: g++-12, cxxstd: '20', install: g++-12, github_release: true }
|
28 | 28 | - { name: "GCC 11 - C++20", os: ubuntu-22.04, cc: gcc-11, cxx: g++-11, cxxstd: 20, install: g++-11 }
|
29 | 29 | - { name: "Clang 15 - C++20", os: ubuntu-22.04, cc: clang-15, cxx: clang++-15, cxxstd: 20, install: "clang-15 libxml2-utils" }
|
|
52 | 52 | if: ${{ startsWith( matrix.os , 'windows' ) }}
|
53 | 53 | shell: bash
|
54 | 54 | run: |
|
55 |
| - export AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }} |
56 |
| - export AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }} |
57 |
| - export AWS_DEFAULT_REGION=${{ secrets.AWS_REGION }} |
58 |
| - aws s3 cp s3://${{ secrets.AWS_BUCKET_NAME }}/llvm-install/RelWithDebInfo-731264b0.7z RelWithDebInfo-731264b0.7z |
| 55 | + curl -L -o "RelWithDebInfo-731264b0.7z" "https://github.com/cppalliance/mrdox/releases/download/llvm-package-release/RelWithDebInfo-731264b0.7z" |
59 | 56 | 7z x RelWithDebInfo-731264b0.7z -ollvm-install
|
60 | 57 | llvm_dir="./llvm-install/RelWithDebInfo"
|
61 | 58 | llvm_dir="$(readlink -f "$llvm_dir" 2>/dev/null || realpath -e "$llvm_dir" 2>/dev/null || echo "$(pwd)/$llvm_dir")"
|
@@ -110,10 +107,10 @@ jobs:
|
110 | 107 | name: release-packages-Linux
|
111 | 108 | path: build
|
112 | 109 |
|
113 |
| - # - uses: actions/download-artifact@v3 |
114 |
| - # with: |
115 |
| - # name: release-packages-Windows |
116 |
| - # path: build |
| 110 | + - uses: actions/download-artifact@v3 |
| 111 | + with: |
| 112 | + name: release-packages-Windows |
| 113 | + path: build |
117 | 114 |
|
118 | 115 | - name: List artifacts
|
119 | 116 | run: ls -R
|
|
0 commit comments