Skip to content

Commit 350b610

Browse files
committed
fix: githubactions
fix: githubactions fix: add glibc fix: github actions fix: use buster fix: ubuntu base fix: ubuntu base walrus fix: github actions fix: add dependencies fix: ubuntu latest fix: ubuntu latest fix: update releases fix: apt-update fix: apt-update fix: update ppas fix: apt-update fix: apt-update fix: apt-update fix: e2e tests fix: tests fix: unit tests
1 parent eb0cad1 commit 350b610

5 files changed

Lines changed: 191 additions & 94 deletions

File tree

.github/workflows/diffgram_testing.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
types: [ready_for_review]
1515
jobs:
1616
Default-Service-Unit-Tests:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-20.04
1818
# Service containers to run with `container-job` test
1919

2020
container:
@@ -73,12 +73,6 @@ jobs:
7373
uses: actions/checkout@v2
7474
with:
7575
ref: ${{ github.ref_name }}
76-
- name: "Get Python Version"
77-
run: python --version
78-
- run: pip3 install --upgrade pip && echo $(python --version)
79-
- run: echo $(pip3 --version)
80-
- run: echo $(pip --version)
81-
- run: echo "debug"
8276

8377
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
8478
- run: cp -rf . /__w/diffgram
@@ -96,10 +90,10 @@ jobs:
9690
with:
9791
files: test-results/**/*.xml
9892
Walrus-Service-Unit-Tests:
99-
runs-on: ubuntu-latest
93+
runs-on: ubuntu-20.04
10094
# Service containers to run with `container-job`
10195
container:
102-
image: thinkwhere/gdal-python:3.11-ubuntu
96+
image: ubuntu:22.04
10397
options: --user root
10498
env:
10599
NODE_ENV: development
@@ -137,9 +131,7 @@ jobs:
137131
- uses: actions/setup-python@v3
138132
with:
139133
python-version: '3.11'
140-
- run: sed -i -re 's/([a-z]{2}.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
141-
- run: apt-get update && apt-get install -y git libffi-dev
142-
- run: pip3 install "pip>=20"
134+
- run: apt-get update --allow-insecure-repositories && apt-get install -y git libffi-dev ffmpeg python3.11 python3-pip libpq-dev python3.11-venv python3.11-distutils python3.11-dev git python3-setuptools libgdal-dev python3-lxml libxslt-dev
143135
- run: pip3 install --upgrade pip
144136
- run: rm -rf /tmp
145137
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."

.github/workflows/e2e_tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# run copies of the current job in parallel
1616
containers: [1,2,3,4,5,6, 7]
1717
container:
18-
image: diffgram/cypress-e2e:latest
18+
image: diffgram/walrus:latest
1919
options: --user root --shm-size 4gb
2020
env:
2121
NODE_ENV: development
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: actions/setup-node@v3
8585
with:
86-
node-version: 16
86+
node-version: 18
8787
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
8888
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
8989
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
@@ -99,6 +99,7 @@ jobs:
9999
- name: Set policy
100100
run: ./mc policy set policy minio/testbucket
101101
- run: cd walrus
102+
- run: gdal-config --version
102103
- run: pip3 install -r walrus/requirements.txt
103104
- run: pip3 install -r default/requirements.txt
104105
- run: pip3 install pytest sqlalchemy-utils

frontend/src/components/annotation/3d_annotation/sensor_fusion_editor.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -932,6 +932,8 @@
932932
await this.$nextTick();
933933
this.secondary_3d_canvas_container = document.getElementById('secondary_3d_canvas_container')
934934
if(this.$refs.x_axis_3d_canvas){
935+
console.log('AAAAAAAA', this.$refs.x_axis_3d_canvas)
936+
console.log('22222', this.$refs.x_axis_3d_canvas.setup_scene)
935937
this.$refs.x_axis_3d_canvas.setup_scene(main_scene)
936938
}
937939
if(this.$refs.y_axis_3d_canvas){

0 commit comments

Comments
 (0)