Skip to content

Commit

Permalink
Merge pull request #17 from wasmerio/feat-llvm-12
Browse files Browse the repository at this point in the history
feat: Support LLVM 12 and disable aarch64
  • Loading branch information
Hywan authored Jun 28, 2021
2 parents fe65d4d + f726964 commit 406d476
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
- id: 'linux-amd64'
os: 'ubuntu-latest'
llvm_prefix: llvm-project/build/install
- id: 'linux-aarch64'
os: ['self-hosted', 'linux', 'ARM64']
llvm_prefix: llvm-project/build/install
#- id: 'linux-aarch64'
# os: ['self-hosted', 'linux', 'ARM64']
# llvm_prefix: llvm-project/build/install
- id: 'darwin-amd64'
os: 'macos-latest'
llvm_prefix: llvm-project/build/install
- id: 'windows-amd64'
os: 'windows-2016'
llvm_prefix: llvm-project/build/Release
llvm_version: ['10.x', '11.x']
llvm_version: ['10.x', '11.x', '12.x']
llvm_repo_url: ['https://github.com/llvm/llvm-project.git']
fail-fast: true

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

strategy:
matrix:
llvm_version: ['10.x', '11.x']
llvm_version: ['10.x', '11.x', '12.x']

steps:
- name: Download the Artifacts
Expand Down Expand Up @@ -128,15 +128,15 @@ jobs:
asset_name: linux-amd64.tar.gz
asset_content_type: application/gzip

- name: Upload Release Asset Linux (ARM64)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/linux-aarch64-${{matrix.llvm_version}}/llvm.tar.gz
asset_name: linux-aarch64.tar.gz
asset_content_type: application/gzip
#- name: Upload Release Asset Linux (ARM64)
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: artifacts/linux-aarch64-${{matrix.llvm_version}}/llvm.tar.gz
# asset_name: linux-aarch64.tar.gz
# asset_content_type: application/gzip

- name: Upload Release Asset Darwin
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 406d476

Please sign in to comment.