revert: bun version back to 1.0.36 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
workflow_call: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mise Tools install | |
uses: jdx/mise-action@v2 | |
with: | |
version: 2024.5.14 | |
install: true | |
cache: true | |
experimental: true | |
- name: Test | |
run: | | |
bun install | |
bun test:ci | |
build: | |
needs: test | |
name: build-${{matrix.name}} | |
runs-on: ${{matrix.runs-on}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu | |
name: linux-x64 | |
target: x86_64-unknown-linux-gnu | |
runs-on: ubuntu-latest | |
- os: ubuntu | |
name: linux-arm64 | |
target: aarch64-unknown-linux-gnu | |
runs-on: ubuntu-latest | |
- os: macos | |
name: darwin-x64 | |
target: x86_64-apple-darwin | |
runs-on: macos-14 | |
- os: macos | |
name: darwin-arm64 | |
target: aarch64-apple-darwin | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mise Tools install | |
uses: jdx/mise-action@v2 | |
with: | |
version: 2024.5.14 | |
install: true | |
cache: true | |
experimental: true | |
- run: bun install | |
- name: Create binary and release files | |
run: | | |
jq -r '.version' package.json | |
mkdir -p ./dist/${{ matrix.name }} | |
bun build ./lib/main.ts --compile --outfile ./dist/${{ matrix.name }}/scfz | |
# FIXME: Bun issue with bin path | |
./lib/scfz --version | |
mv ./lib/scfz ./dist/${{ matrix.name }}/scfz | |
cd ./dist | |
tar -czvf scfz-${{ matrix.name }}.tar.gz ./${{ matrix.name }}/ | |
cd .. | |
# TODO: Checksums | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: tarball-${{matrix.target}} | |
path: | | |
./dist/scfz-*.tar.gz | |
if-no-files-found: error |