Skip to content

Commit 62ea851

Browse files
Merge pull request #61 from ut-issl/feature/release-v3.0.0
Release v3.0.0
2 parents 2224edb + ab67d34 commit 62ea851

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+21611
-19111
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,25 +58,25 @@ The application listed below is required:
5858
- Comment
5959
+ Comment function is available by prefixing a line with `#`.
6060
- Other Functions
61-
+ `call`: You can call other *.ops file.
61+
+ `call`: Funtion to call other *.ops file.
6262
+ ex.) `call TEST.ops`.
63-
+ `wait_sec`: You can specify how many seconds to wait before moving to the next file line.
63+
+ `wait_sec`: Function to specify how many seconds to wait before moving to the next file line.
6464
+ ex.) `wait_sec 2`
65-
+ `let`: You can define internal variables.
65+
+ `let`: Function to define internal variables.
6666
+ The right-hand side of the `let` function can perform four arithmetic operations and other operations (*1).
6767
+ The current telemetry value or an already defined variable using `let` function can be assigned by enclosing it in braces `{}`.
6868
+ ex.1)`let testA = 10 + 60 * 10`
6969
+ ex.2) `let testB = {testA} + 10 * Math.sin(Math.PI)`
70-
+ `get`: You can get the current value of the telemerty or the defined variable.
70+
+ `get`: Function to get the current value of the telemerty or the defined variable.
7171
+ ex.) `get testA`
72-
+ `check_value`: You can check whether a specific value fulfills the requirement.
72+
+ `check_value`: Function to check whether the specific condition is satisfied.
7373
+ `check_value` function is basically used as follows:
7474
+ `check_value A == B`
7575
+ `check_value A >= B`
7676
+ Currently, `A` is limited to telemetry names and variables defined by `let` function.
7777
+ `B` can be any value, the names of telemetry, or variables already defined using `let` function.
7878
+ The names of telemetry, or variables already defined must be enclosed in braces {}.
79-
+ `wait_until`: 条件式が成立するまで待機する機能.
79+
+ `wait_until`: Function to wait until the specific condition is satisfied.
8080
+ `wait_until` function is basically used as follows:
8181
+ `wait_until A == B`
8282
+ `wait_until A >= B`

aspnetapp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
22
WORKDIR /app
33
EXPOSE 5001
4-
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
4+
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
55
RUN apt-get update
66
RUN apt-get install -y nodejs
77
ENV TZ=Asia/Tokyo
88

99
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
1010
WORKDIR /src
11-
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
11+
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
1212
RUN apt-get update
1313
RUN apt-get install -y nodejs
1414
COPY ["WINGS/WINGS.csproj", "WINGS/"]

0 commit comments

Comments
 (0)