Skip to content

Commit

Permalink
bump libtea for tar deadlock fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Jun 18, 2023
1 parent 6648079 commit 432ebff
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,36 @@ jobs:
- uses: andymckay/cancel-action@0.2
if: ${{ steps.rev-parse.outputs.result == 'cancel' }}

ci:
qa:
# run tests on all our runners since we’ve had issues in the past where
# subtle differences weren’t caught and pantry builds started failing :/
needs: [check]
uses: ./.github/workflows/ci.yml
secrets: inherit
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- [self-hosted, macOS, ARM64]
- [self-hosted, linux, ARM64]
- [self-hosted, macOS, X64]
- [self-hosted, linux, X64]
steps:
- uses: actions/checkout@v3
- uses: teaxyz/setup@v0
- run: deno task test

# we compile here so we can attach binaries to the release itself
# we do this because people expect that, and will be confused otherwise
# and we want people to be able to just grab the single binaries as
# they wish
compile:
needs: [ci, check, bundle-src]
needs: [qa, check, bundle-src]
permissions:
contents: read
actions: write
strategy:
matrix:
platform:
- os: macos-11
- os: macos-latest
build-id: darwin+x86-64
- os: ubuntu-latest
build-id: linux+x86-64
Expand Down Expand Up @@ -101,7 +113,7 @@ jobs:

bundle-src:
runs-on: ubuntu-latest
needs: [ci, check]
needs: [qa, check]
env:
FILENAME: tea-${{ needs.check.outputs.version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</p>


# tea/cli 0.35.7
# tea/cli 0.35.8

`tea` puts the whole open source ecosystem at your fingertips:

Expand Down
4 changes: 2 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
},
"imports": {
"is-what": "https://deno.land/x/is_what@v4.1.15/src/index.ts",
"tea": "https://raw.github.com/teaxyz/lib/v0.6.0/mod.ts",
"tea/": "https://raw.github.com/teaxyz/lib/v0.6.0/src/",
"tea": "https://deno.land/x/libtea@v0.6.2/mod.ts",
"tea/": "https://deno.land/x/libtea@v0.6.2/src/",
"outdent": "https://deno.land/x/outdent@v0.8.0/mod.ts",
"cliffy/": "https://deno.land/x/cliffy@v0.25.7/",
"deno/": "https://deno.land/std@0.191.0/",
Expand Down

0 comments on commit 432ebff

Please sign in to comment.