From 4c1377e2c64cc69cb1b02a93d7e803fdffb4581a Mon Sep 17 00:00:00 2001 From: rzmk Date: Wed, 29 May 2024 12:33:24 -0400 Subject: [PATCH] build: update with start file --- .github/workflows/publish.yml | 2 -- postBuild | 15 --------------- requirements.txt | 1 + start | 4 ++++ 4 files changed, 5 insertions(+), 17 deletions(-) delete mode 100644 postBuild create mode 100644 requirements.txt create mode 100644 start diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 665b90b..ae691d7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,8 +32,6 @@ jobs: - name: Install dependencies run: | pip install -e ./bash_kernel - pip install jupyter-book - python -m bash_kernel.install # (optional) Cache your executed notebooks between runs # if you have config: diff --git a/postBuild b/postBuild deleted file mode 100644 index e8ce4ee..0000000 --- a/postBuild +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -set -ex - -pip install bash_kernel -python -m bash_kernel.install - -rm -rf path_files -mkdir path_files -export PATH=/home/jovyan/path_files:$PATH -cd path_files -curl -LO https://github.com/jqnatividad/qsv/releases/download/0.128.0/qsv-0.128.0-x86_64-unknown-linux-gnu.zip -unzip qsv-0.128.0-x86_64-unknown-linux-gnu.zip -rm qsv* -cd .. \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..47a56ab --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +jupyter-book \ No newline at end of file diff --git a/start b/start new file mode 100644 index 0000000..6f12e23 --- /dev/null +++ b/start @@ -0,0 +1,4 @@ +#!/bin/bash + +python -m bash_kernel.install +export PATH=/home/jovyan/path_files:$PATH \ No newline at end of file