mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
812f8823d2
* ci: update to checkout v6 v4 and older causes warnings about deprecated node.js * ci: update to actions cache v5 the older versions cause deprecation warings for node.js 20
18 lines
520 B
YAML
18 lines
520 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
- uses: mymindstorm/setup-emsdk@6ab9eb1bda2574c4ddb79809fc9247783eaf9021 # v14
|
|
- name: Verify
|
|
run: emcc -v
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Configure
|
|
run: emcmake cmake -B build
|
|
- name: Build # We build but do not test
|
|
run: cmake --build build
|