mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix CI
This commit is contained in:
parent
12589345ce
commit
1250a127ed
3 changed files with 3 additions and 2 deletions
|
@ -216,6 +216,7 @@ pkg:alpine:
|
|||
- docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}
|
||||
script:
|
||||
- docker buildx build ${DOCKER_OPTS}
|
||||
--pull
|
||||
--output type=docker
|
||||
--target app
|
||||
--build-arg ARCH=${ARCH}
|
||||
|
|
|
@ -43,7 +43,7 @@ public:
|
|||
int openSocket();
|
||||
int closeSocket();
|
||||
|
||||
void writeData(uint len, double *yData, double *xData = nullptr);
|
||||
void writeData(unsigned len, double *yData, double *xData = nullptr);
|
||||
};
|
||||
|
||||
} /* namespace node */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
###################################################################################
|
||||
|
||||
FROM alpine:edge AS dev
|
||||
FROM alpine:3.13.1 AS dev
|
||||
|
||||
ARG DISTRO=alpine
|
||||
ARG ARCH=x86_64
|
||||
|
|
Loading…
Add table
Reference in a new issue