Skip to content

Commit

Permalink
Mino Feat: Change the Manifest To have a new type (#1736)
Browse files Browse the repository at this point in the history
* Add build-essential to README.md (#1716)

Update README.md

* write image to sparse-aware archive format (#1709)

* fix: Add modification to the max_user_watches (#1695)

* fix: Add modification to the max_user_watches

* chore: Move to initialization

* [Feat] follow logs (#1714)

* tail logs

* add cli

* add FE

* abstract http to shared

* batch new logs

* file download for logs

* fix modal error when no config

Co-authored-by: Chris Guida <chrisguida@users.noreply.github.com>
Co-authored-by: Aiden McClelland <me@drbonez.dev>
Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
Co-authored-by: BluJ <mogulslayer@gmail.com>

* Update README.md (#1728)

* fix build for patch-db client for consistency (#1722)

* fix cli install (#1720)

* highlight instructions if not viewed (#1731)

* wip:

* [ ] Fix the build (dependencies:634 map for option)

* fix: Cargo build

* fix: Long running wasn't starting

* fix: uninstall works

Co-authored-by: Chris Guida <chrisguida@users.noreply.github.com>
Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com>
Co-authored-by: Aiden McClelland <me@drbonez.dev>
Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>
Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
  • Loading branch information
7 people authored Aug 17, 2022
1 parent a8b838d commit 05c6879
Show file tree
Hide file tree
Showing 101 changed files with 2,892 additions and 1,983 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/product.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ jobs:
run: "make V=1 NO_KEY=1 eos.img --debug"

- name: Compress image
run: "gzip eos.img"
run: "make gzip"

- uses: actions/upload-artifact@v3
with:
name: image
path: eos.img.gz
path: eos.tar.gz
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ deploy_web.sh
secrets.db
.vscode/
/cargo-deps/**/*
ENVIRONMENT.txt
GIT_HASH.txt
/ENVIRONMENT.txt
/GIT_HASH.txt
/eos.tar.gz
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ $(shell sudo true)

all: eos.img

gzip: eos.img
gzip -k eos.img
gzip: eos.tar.gz

eos.tar.gz: eos.img
tar --format=posix -cS -f- eos.img | gzip > eos.tar.gz

clean:
rm -f eos.img
Expand Down Expand Up @@ -91,8 +93,7 @@ patch-db/client/node_modules: patch-db/client/package.json

patch-db/client/dist: $(PATCH_DB_CLIENT_SRC) patch-db/client/node_modules
! test -d patch-db/client/dist || rm -rf patch-db/client/dist
rm -rf frontend/.angular/cache
npm --prefix patch-db/client run build
npm --prefix frontend run build:deps

# this is a convenience step to build all frontends - it is not referenced elsewhere in this file
frontends: $(EMBASSY_UIS)
Expand Down
Loading

0 comments on commit 05c6879

Please sign in to comment.