diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c5f773..77d256a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: | @@ -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