Skip to content

Commit

Permalink
add rust toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
gamcil committed Dec 5, 2023
1 parent 13a8fd2 commit e1925ed
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@ env:
jobs:
build_macos:
name: macOS
runs-on: macos-latest
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Install Rust Toolchain
run: |
rustup update
rustup target install x86_64-apple-darwin
rustup target install aarch64-apple-darwin
- name: Build
run: |
Expand All @@ -31,8 +37,8 @@ jobs:
- name: Upload MacOS Universal
uses: actions/upload-artifact@v3
with:
name: mmseqs-darwin-universal
path: ${{ github.workspace }}/build/mmseqs
name: foldmason-darwin-universal
path: ${{ github.workspace }}/build/foldmason

build_ubuntu:
name: Build Ubuntu
Expand Down

0 comments on commit e1925ed

Please sign in to comment.