Remove large llamafile options #9
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: Build Memory Cache Ubuntu | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: 'johnshaughnessy/Memory-Cache-Browser-Client' | |
path: 'Memory-Cache-Browser-Client' | |
- name: Install Node.js and Yarn | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.18.2' | |
- name: Install Memory Cache Browser Client Dependencies | |
run: | | |
cd Memory-Cache-Browser-Client | |
sudo corepack enable | |
yarn --version | |
yarn install | |
- name: Build Memory Cache Browser Client | |
run: | | |
cd Memory-Cache-Browser-Client | |
yarn parcel build src/index.html | |
- uses: actions/checkout@v2 | |
with: | |
repository: 'johnshaughnessy/Memory-Cache-Hub' | |
path: 'Memory-Cache-Hub' | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install Memory Cache Hub Dependencies | |
run: | | |
cd Memory-Cache-Hub | |
python3.11 -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
- name: Build Memory Cache Hub (--onedir) | |
run: | | |
cd Memory-Cache-Hub | |
source venv/bin/activate | |
pip install -r requirements.build.txt | |
python -m memory_cache_hub.build.build_memory_cache_hub --client-path ../Memory-Cache-Browser-Client/dist | |
- name: Upload Memory Cache Hub Artifacts (One Directory) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: memory_cache_dir_${{ runner.os }}_${{ github.sha }} | |
path: Memory-Cache-Hub/dist/memory_cache_hub | |
- name: Build Memory Cache Hub (--onefile) | |
run: | | |
cd Memory-Cache-Hub | |
source venv/bin/activate | |
pip install -r requirements.build.txt | |
python -m memory_cache_hub.build.build_memory_cache_hub --client-path ../Memory-Cache-Browser-Client/dist --onefile | |
- name: Upload Memory Cache Hub Artifacts (One File) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: memory_cache_${{ runner.os }}_${{ github.sha }} | |
path: Memory-Cache-Hub/dist/memory_cache_hub |