Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 3 additions & 14 deletions projects/bitwarden.com/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,26 @@ distributable:
strip-components: 1

versions:
npm: "@bitwarden/cli"
npm: '@bitwarden/cli'

dependencies:
nodejs.org: ^20

build:
dependencies:
npmjs.com: "*"
npmjs.com: '*'
darwin:
github.com/fastfloat/fast_float: ^8 # needed to work with Xcode >=16.2
linux:
python.org: ^3 # needed to build some native modules
script:
- npm i husky
- run: npm i semver
if: ">=2025.5.0"
if: '>=2025.5.0'
- git init
- npm i $ARGS .
- run: ln -s ../libexec/bin/bw bw
working-directory: ${{prefix}}/bin
if: <2025
# 2025.x+ ships a bw_setup.js launcher that spawns `./bun bw1.js` from
# cwd. A bare symlink + PATH invocation leaves cwd = caller's dir, so
# bun can't find bw1.js. Wrap it so we always cd into the install dir.
- run: install -m755 $PROP bw
prop: |
#!/bin/sh
cd "$(dirname $0)/../libexec/bin"
exec node bw "$@"
working-directory: ${{prefix}}/bin
if: ">=2026.4.0"
env:
linux:
CC: clang
Expand Down
4 changes: 2 additions & 2 deletions projects/google.com/highway/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ versions:

build:
dependencies:
cmake.org: '*'
cmake.org: "*"
script:
- cmake -S . -B builddir $ARGS
- cmake --build builddir
Expand Down Expand Up @@ -36,7 +36,7 @@ test:
CXXFLAGS: $CXXFLAGS -Wl,--allow-shlib-undefined
script:
- cp -R {{prefix}}/share/hwy .
- c++ -std=c++11 -lhwy -I. hwy/examples/benchmark.cc $CXXFLAGS
- c++ -std=c++11 -I. hwy/examples/benchmark.cc $CXXFLAGS -lhwy
# the benchmark doesn't like GHA's runners for this arch
- run: exit 0
if: darwin/x86-64
Expand Down
Loading