|
|
|
@ -35,14 +35,20 @@ jobs: |
|
|
|
|
- uses: actions/checkout@v3 |
|
|
|
|
with: |
|
|
|
|
submodules: true |
|
|
|
|
- run: rustup update |
|
|
|
|
- run: rustup update && rustup target add aarch64-apple-darwin |
|
|
|
|
- uses: Swatinem/rust-cache@v2 |
|
|
|
|
- run: cargo build --release |
|
|
|
|
working-directory: ./server |
|
|
|
|
- run: cargo build --release --target aarch64-apple-darwin |
|
|
|
|
working-directory: ./server |
|
|
|
|
- uses: actions/upload-artifact@v3 |
|
|
|
|
with: |
|
|
|
|
name: oxigraph_server_x86_64_apple |
|
|
|
|
path: target/release/oxigraph_server |
|
|
|
|
- uses: actions/upload-artifact@v3 |
|
|
|
|
with: |
|
|
|
|
name: oxigraph_server_aarch64_apple |
|
|
|
|
path: target/aarch64-apple-darwin/release/oxigraph_server |
|
|
|
|
|
|
|
|
|
binary_windows: |
|
|
|
|
runs-on: windows-latest |
|
|
|
|