Skip to content

Added required python modules #88

Added required python modules

Added required python modules #88

Workflow file for this run

name: ci
on:
push:
branches:
- 'feature_regressiontests'
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
# -
# name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ vars.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# -
# name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Build and push the image
run : |
docker login --username EvertBunschoten --password ${{ secrets.GHCR_TOKEN }} ghcr.io
docker build . --file ./docker/build/Dockerfile_test --tag ghcr.io/evertbunschoten/su2dataminer_test:latest
docker push ghcr.io/evertbunschoten/su2dataminer_test:latest
# -
# name: Build and push
# uses: docker/build-push-action@v6
# with:
# push: true
# file: ./docker/build/Dockerfile_test
# tags: |
# ecbunschoten/su2dataminer_test:latest
# - name: "Run regression"
# uses: docker://ghcr.io/ecbunschoten/su2dataminer_test:latest
# with:
# args: -b ${{ github.ref }} -s run_regression.py
# - name: Push image to GHCR
# run: |
# docker buildx imagetools create \
# --tag ghcr.io/ecbunschoten/su2dataminer_test:latest \
# --tag ghcr.io/ecbunschoten/su2dataminer_test:1.0.0 \
# ecbunschoten/su2dataminer_test:latest
# - name: Pre Cleanup
# uses: docker://ghcr.io/ecbunschoten/su2dataminer_test:latest
# with:
# entrypoint: /bin/rm
# args: -rf install install_bin.tgz src ccache
# - name: Build
# uses: docker://ghcr.io/ecbunschoten/su2dataminer_test:latest
# with:
# args: -b ${{ github.ref }} -s run_regression.py