Skip to content

feature: github action test #4

feature: github action test

feature: github action test #4

name: Build CLI
on:
push:
branches:
- master
# paths:
# - "zstandard_cli/**"
jobs:
prepare_native_precompiled_lib:
name: Download zstd lib directory
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Node.js 18
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Landa Messenger CLI
run: npm install @landamessenger/landa-messenger-api -g
- name: Download source files from facebook/zstd
run: |
cd zstandard_cli
git clone https://github.com/facebook/zstd.git
mv zstd/lib/* src/
rm -rf zstd/
- name: List files in zstd/lib to verify
run: ls -R src