-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: build and push dev images (#1448)
* add push images workflow * allow for workflow dispatch trigger * remove trigger
- Loading branch information
Showing
4 changed files
with
82 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Push images | ||
|
||
on: | ||
push: | ||
|
||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
env: | ||
IMAGE_NAME: eur-dev-env | ||
BASE_ENV: envs/linux-pinned.yaml | ||
|
||
jobs: | ||
push-image: | ||
name: dev-env | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: 'Get relevant env' | ||
run: | | ||
hash_last_changed=$(git log -1 --pretty=format:%H -- ${{ env.BASE_ENV }}) | ||
echo "hash_last_changed=$hash_last_changed" >> $GITHUB_ENV | ||
- name: 'Login to GitHub Container Registry' | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.REGISTRY_TOKEN }} | ||
|
||
- name: 'Build new image' # only build if the pinned envs file was modified | ||
if: env.hash_last_changed == github.sha || github.event_name == 'workflow_dispatch' | ||
run: | | ||
docker build . --file docker/dev-env/Dockerfile --tag ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | ||
docker push ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | ||
# Add latest tag if on main branch | ||
if [ "${{ github.ref }}" == "refs/heads/master" ]; then | ||
docker tag ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }} ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest | ||
docker push ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest | ||
fi | ||
- name: 'Add SHA tag to existing image' # when rebuild is not needed | ||
if: env.hash_last_changed != github.sha | ||
run: |- | ||
docker pull ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.hash_last_changed }} | ||
docker tag ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.hash_last_changed }} ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | ||
docker push ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# SPDX-FileCopyrightText: Contributors to PyPSA-Eur <https://github.com/pypsa/pypsa-eur> | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
FROM condaforge/mambaforge | ||
|
||
RUN conda update -n base conda | ||
RUN conda install -n base conda-libmamba-solver | ||
RUN conda config --set solver libmamba | ||
|
||
RUN apt-get update && apt-get install -y bash git make | ||
|
||
RUN conda --version | ||
|
||
WORKDIR /pypsa-eur | ||
|
||
COPY ./envs ./temp | ||
|
||
RUN conda env create -n pypsa-eur -f temp/linux-pinned.yaml | ||
RUN conda init bash | ||
RUN echo "conda activate pypsa-eur" >> ~/.bashrc | ||
|
||
SHELL ["/bin/bash", "--login", "-c"] | ||
ENV PATH=/opt/conda/envs/pypsa-eur/bin:$PATH | ||
|
||
RUN rm -r temp | ||
RUN conda clean -afy && \ | ||
rm -rf /tmp/* | ||
|
||
CMD ["bash"] |