10
10
- main
11
11
- dev
12
12
- dev_eco
13
- - dv_docker
13
+ # - dev_dagster142
14
14
tags :
15
15
- " v*.*.*"
16
16
@@ -22,7 +22,7 @@ defaults:
22
22
23
23
jobs :
24
24
build :
25
- name : Dockerize Scheduler for Project
25
+ name : Dockerize Scheduler
26
26
runs-on : ubuntu-latest
27
27
strategy :
28
28
matrix :
33
33
steps :
34
34
- name : Set variables
35
35
run : |
36
- REGISTRY_IMAGE=nsfearthcube/dagster-${{ matrix.project }}
36
+ REGISTRY_IMAGE=nsfearthcube/dagster-gleanerio
37
37
echo "REGISTRY_IMAGE=$REGISTRY_IMAGE" >> $GITHUB_ENV
38
38
working-directory : /
39
39
- name : Checkout Repo
@@ -106,7 +106,102 @@ jobs:
106
106
build-args :
107
107
implnet=${{ matrix.project }}
108
108
# file: ./dagster/implnets/build/Dockerfile
109
- file : ./build/Dockerfile_ci
109
+ file : ./build/Dockerfile_dagster
110
+ context : " {{defaultContext}}:dagster/implnets"
111
+ tags : ${{ steps.meta.outputs.tags }}
112
+ # tags: nsfearthcube/ec_facets_client:latest
113
+ labels : ${{ steps.meta.outputs.labels }}
114
+ # platforms: ${{ matrix.platform }}
115
+ # outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
116
+
117
+ - name : Image digest
118
+ run : echo ${{ steps.build.outputs.digest }}
119
+ build_code :
120
+ name : Dockerize Scheduler CODE for Project
121
+ runs-on : ubuntu-latest
122
+ strategy :
123
+ matrix :
124
+ # project: [ "eco" ]
125
+ project : [ "eco", "iow", "oih" ]
126
+ # platform: ["linux/amd64","linux/arm64"]
127
+ # platform: ["linux/amd64"] #linux/arm64 issues with building
128
+ steps :
129
+ - name : Set variables
130
+ run : |
131
+ REGISTRY_IMAGE=nsfearthcube/dagster-gleanerio-${{ matrix.project }}
132
+ echo "REGISTRY_IMAGE=$REGISTRY_IMAGE" >> $GITHUB_ENV
133
+ working-directory : /
134
+ - name : Checkout Repo
135
+ uses : actions/checkout@v3
136
+ - name : Set up QEMU
137
+ uses : docker/setup-qemu-action@v2
138
+ - name : Set up Docker Buildx
139
+ uses : docker/setup-buildx-action@v2
140
+ - name : Login to DockerHub
141
+ uses : docker/login-action@v2
142
+ with :
143
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
144
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
145
+ - name : Extract metadata (tags, labels) for Docker
146
+ id : meta
147
+ uses : docker/metadata-action@v4
148
+ with :
149
+ images : ${{ env.REGISTRY_IMAGE }}
150
+ flavor : |
151
+ latest=true
152
+ tags : |
153
+ type=ref,event=tag
154
+ type=ref,event=branch
155
+ type=semver,pattern={{version}}
156
+ type=sha
157
+
158
+ # - name: Set up Python 3.10
159
+ # uses: actions/setup-python@v4
160
+ # with:
161
+ # python-version: '3.10'
162
+ # - name: Install dependencies
163
+ # run: |
164
+ # python -m pip install --upgrade pip
165
+ # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
166
+ # long version with lint,
167
+ # run: |
168
+ # python -m pip install --upgrade pip
169
+ # pip install flake8 pytest
170
+ # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
171
+ # pip install build
172
+ # - name: Lint with flake8
173
+ # run: |
174
+ # # stop the build if there are Python syntax errors or undefined names
175
+ # flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
176
+ # # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
177
+ # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
178
+ # - name: Build package
179
+ # run: python -m build
180
+ # - name: Build tooling
181
+ # run: |
182
+ # cd ./tooling/cfgBuilder/${{ matrix.project }}
183
+ # python cfgBuilder.py -s https://foo.us/sitemap.xml
184
+ # - name: Generate
185
+ # working-directory: dagster/implnets
186
+ # run: |
187
+ # python pygen.py -cf ./configs/${{ matrix.project }}/gleanerconfig.yaml -od /temp/generatedDocker/implnet-${{ matrix.project }}/output -td ./templates/v1 -d 7
188
+ # - name: check
189
+ # working-directory: dagster/implnets
190
+ # run: |
191
+ # cat ./generatedCode/implnet-${{ matrix.project }}/output/ops/implnet_ops_amgeo.py
192
+
193
+ - name : Build and push
194
+ id : build
195
+ uses : docker/build-push-action@v4
196
+ with :
197
+ # context: ./dagster/implnets
198
+ # grr https://github.com/docker/build-push-action#git-context
199
+ # context: "{{defaultContext}}"
200
+ push : true
201
+ build-args :
202
+ implnet=${{ matrix.project }}
203
+ # file: ./dagster/implnets/build/Dockerfile
204
+ file : ./build/Dockerfile_code
110
205
context : " {{defaultContext}}:dagster/implnets"
111
206
tags : ${{ steps.meta.outputs.tags }}
112
207
# tags: nsfearthcube/ec_facets_client:latest
0 commit comments