We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed199ee commit 066570dCopy full SHA for 066570d
.github/workflows/tembo_release.yml
@@ -12,17 +12,20 @@ jobs:
12
13
cargo_build:
14
name: Cargo build
15
- runs-on: ubuntu-20.04
16
- container:
17
- image: quay.io/tembo/muslrust:1.71.0-stable
18
strategy:
19
fail-fast: false
20
matrix:
21
include:
22
- target: x86_64-apple-darwin
23
asset_name: x86_64-apple
+ os: macos-latest
24
- target: x86_64-unknown-linux-musl
25
asset_name: x86_64-linux
+ os: ubuntu-20.04
+ container: quay.io/tembo/muslrust:1.71.0-stable
26
+ runs-on: ${{ matrix.os }}
27
+ container:
28
+ image: ${{ matrix.container }}
29
steps:
30
- name: Check out the repo
31
uses: actions/checkout@v4
0 commit comments