Skip to content

Commit fedfe34

Browse files
committed
LLVM comes from GitHub release
1 parent 1cee02e commit fedfe34

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
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 }
2727
- { name: "GCC 12 - C++20", os: ubuntu-22.04, cc: gcc-12, cxx: g++-12, cxxstd: '20', install: g++-12, github_release: true }
2828
- { name: "GCC 11 - C++20", os: ubuntu-22.04, cc: gcc-11, cxx: g++-11, cxxstd: 20, install: g++-11 }
2929
- { name: "Clang 15 - C++20", os: ubuntu-22.04, cc: clang-15, cxx: clang++-15, cxxstd: 20, install: "clang-15 libxml2-utils" }
@@ -52,10 +52,7 @@ jobs:
5252
if: ${{ startsWith( matrix.os , 'windows' ) }}
5353
shell: bash
5454
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"
5956
7z x RelWithDebInfo-731264b0.7z -ollvm-install
6057
llvm_dir="./llvm-install/RelWithDebInfo"
6158
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:
110107
name: release-packages-Linux
111108
path: build
112109

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
117114

118115
- name: List artifacts
119116
run: ls -R

0 commit comments

Comments
 (0)