From f93109075c56038a7284bcdabd0f92458ee5e1ab Mon Sep 17 00:00:00 2001 From: sravanthimodepu Date: Fri, 27 Aug 2021 18:01:30 +0530 Subject: [PATCH 1/2] updated descriptor.json --- experiment-descriptor.json | 7 +++++++ experiment/aim.md | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/experiment-descriptor.json b/experiment-descriptor.json index 57f87c4..0f0798c 100644 --- a/experiment-descriptor.json +++ b/experiment-descriptor.json @@ -13,6 +13,13 @@ "unit-type": "task", "content-type": "text" }, + { + "target": "objective.html", + "source": "objective.md", + "label": "Objective", + "unit-type": "task", + "content-type": "text" + }, { "target": "pretest.html", "source": "pretest.json", diff --git a/experiment/aim.md b/experiment/aim.md index 73bba14..f5ee961 100644 --- a/experiment/aim.md +++ b/experiment/aim.md @@ -1 +1,3 @@ -The objective of this experiment is to learn the fundamentals of Floating Point Representation of Numbers. +Many scientific applications involve computations involving just not integers but also real numbers. In computers we cannot precisely represent all of the real numbers. However we can still have a useful and effective representation of them with certain loss in precision. + +In this lab we shall understand the basic concepts of Floating Point Numbers and their conversion to and from decimal form. From 370c0026b04d57b2d11062bf56303cf15f188a40 Mon Sep 17 00:00:00 2001 From: BalammaBoya Date: Fri, 27 Aug 2021 18:53:05 +0530 Subject: [PATCH 2/2] Update deployment-script.yml --- .github/workflows/deployment-script.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment-script.yml b/.github/workflows/deployment-script.yml index f893dde..d5c3c12 100644 --- a/.github/workflows/deployment-script.yml +++ b/.github/workflows/deployment-script.yml @@ -15,13 +15,13 @@ jobs: - name: Setup node uses: actions/setup-node@v2 with: - node-version: '12' + node-version: '16' check-latest: true - run: | - git clone -b pipeline-new https://github.com/virtual-labs/ph3-lab-mgmt + git clone --depth=1 https://github.com/virtual-labs/ph3-lab-mgmt cd ph3-lab-mgmt npm install - node exp.js + npm run build-exp cd ../ git config --local user.email "admin@vlabs.ac.in" git config --local user.name "vleadadmin"