From cec21d70fa9d83381ef382b3f1321f72d6bc92e0 Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Fri, 17 Jan 2025 18:06:54 +0000 Subject: [PATCH] Container based tests Signed-off-by: Prabhu Subramanian --- ci/Dockerfile | 2 +- ci/Dockerfile.sle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index add7893..b295990 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -100,7 +100,7 @@ COPY ./target/atom.zip . COPY ./wrapper . RUN unzip -q atom.zip \ && composer update --no-progress --prefer-dist --ignore-platform-reqs \ - && cd /opt/nodejs && npm install --only=production && npm install -g . && cd /opt \ + && cd /opt/nodejs && npm install --only=production && bash build.sh && npm install -g . && cd /opt \ && rm -rf atom.zip composer.json composer.lock composer-setup.php /usr/local/bin/atom \ && /opt/bin/atom --help \ && which astgen \ diff --git a/ci/Dockerfile.sle b/ci/Dockerfile.sle index 9a9e7b6..e4b1c8e 100644 --- a/ci/Dockerfile.sle +++ b/ci/Dockerfile.sle @@ -85,7 +85,7 @@ COPY ./wrapper . RUN unzip -q atom.zip \ && source /root/.nvm/nvm.sh \ && composer update --no-progress --prefer-dist --ignore-platform-reqs \ - && cd /opt/nodejs && npm install --only=production && npm install -g . && cd /opt \ + && cd /opt/nodejs && npm install --only=production && bash build.sh && npm install -g . && cd /opt \ && rm -rf atom.zip composer.json composer.lock composer-setup.php /usr/local/bin/atom \ && java --version \ && /opt/bin/atom --help \