Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/BERTEncoder.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#Pipeline fails due too removed large files

name: BERTEncoder
on:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/Datasets.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#Deployment of most datasets is currently disablled by adding && false in the if condition.
#This is necessary as the datasets would otherwise be incompletltey deployed.
#Due to the 100mb file size limit of GitHub most train.h5 files were removed and therefore not part of the artifact.

name: Datasets
on:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/EMADL2CPP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,7 @@ jobs:
fetch-depth: 1
- name: Script
shell: bash
#Disabled due to broken Dockerfile
continue-on-error: true
run: |
cd generators/EMADL2CPP
Expand Down Expand Up @@ -534,6 +535,7 @@ jobs:
fetch-depth: 1
- name: Script
shell: bash
#Disabled due to broken Dockerfile
continue-on-error: true
run: |
cd generators/EMADL2CPP
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/MNISTCalculator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
docker pull ghcr.io/monticore/mnistcalculator/tensorflow:latest
docker run --name build-container -d -v $(pwd):/workspace --network=host -e CI_PROJECT_ID=$CI_PROJECT_ID -e CI_API_V4_URL=$CI_API_V4_URL -e GITLABTOKEN=${{ secrets.GITLABTOKEN }} -e cibuild=$cibuild ghcr.io/monticore/mnistcalculator/tensorflow:latest tail -f /dev/null
- name: Script
#Disabled due to removed large files
continue-on-error: true
env:
SCRIPT: |
Expand Down Expand Up @@ -95,6 +96,7 @@ jobs:
docker pull ghcr.io/monticore/emadl2cpp/mxnet/190:v0.0.2
docker run --name build-container -d -v $(pwd):/workspace --network=host -e CI_PROJECT_ID=$CI_PROJECT_ID -e CI_API_V4_URL=$CI_API_V4_URL -e GITLABTOKEN=${{ secrets.GITLABTOKEN }} -e cibuild=$cibuild ghcr.io/monticore/emadl2cpp/mxnet/190:v0.0.2 tail -f /dev/null
- name: Script
#Disabled due to removed large files
continue-on-error: true
env:
SCRIPT: |
Expand Down Expand Up @@ -374,6 +376,7 @@ jobs:
docker pull ghcr.io/monticore/emadl2cpp/dockerimages/tensorflow-onnx:latest
docker run --name build-container -d -v $(pwd):/workspace --network=host -e CI_PROJECT_ID=$CI_PROJECT_ID -e CI_API_V4_URL=$CI_API_V4_URL -e GITLABTOKEN=${{ secrets.GITLABTOKEN }} -e cibuild=$cibuild ghcr.io/monticore/emadl2cpp/dockerimages/tensorflow-onnx:latest tail -f /dev/null
- name: Script
#Disabled due to removed large files
continue-on-error: true
env:
SCRIPT: |
Expand All @@ -384,6 +387,7 @@ jobs:
run: docker exec build-container bash -c "set -e; $SCRIPT"
- name: Upload artifacts
uses: actions/upload-artifact@v4
#Disabled due to removed large files
continue-on-error: true
if: success()
with:
Expand All @@ -404,6 +408,7 @@ jobs:
fetch-depth: 1
- name: Download artifacts
uses: actions/download-artifact@v4
#Disabled due to removed large files
continue-on-error: true
with:
name: TrainTensorflowONNX
Expand All @@ -415,6 +420,7 @@ jobs:
docker pull ghcr.io/monticore/emadl2cpp/dockerimages/mxnet170-onnx:v0.0.1
docker run --name build-container -d -v $(pwd):/workspace --network=host -e CI_PROJECT_ID=$CI_PROJECT_ID -e CI_API_V4_URL=$CI_API_V4_URL -e GITLABTOKEN=${{ secrets.GITLABTOKEN }} -e cibuild=$cibuild ghcr.io/monticore/emadl2cpp/dockerimages/mxnet170-onnx:v0.0.1 tail -f /dev/null
- name: Script
#Disabled due to removed large files
continue-on-error: true
env:
SCRIPT: |
Expand Down Expand Up @@ -514,6 +520,7 @@ jobs:
docker pull ghcr.io/monticore/emadl2cpp/mxnet/190:v0.0.2
docker run --name build-container -d -v $(pwd):/workspace --network=host -e CI_PROJECT_ID=$CI_PROJECT_ID -e CI_API_V4_URL=$CI_API_V4_URL -e GITLABTOKEN=${{ secrets.GITLABTOKEN }} -e cibuild=$cibuild ghcr.io/monticore/emadl2cpp/mxnet/190:v0.0.2 tail -f /dev/null
- name: Script
#Disabled due to removed large files
continue-on-error: true
env:
SCRIPT: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/torcsdprl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
fetch-depth: 1
- name: Script
shell: bash
#Disabled due to broken Dockerfile
continue-on-error: true
run: |
cd applications/torcsdprl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ RUN pip3 install --user --upgrade "cmake>=3.13.2"
ENV DGLBACKEND=pytorch
RUN wget https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.12.1%2Bcpu.zip -O /usr/lib/libtorch.zip && \
unzip /usr/lib/libtorch.zip -d /usr/lib && \
rm /usr/lib/libtorch.zip
rm /usr/lib/libtorch.zip

Loading
Loading