-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* redo ci * add a changelog * Add version to ci deploy docker * fix no ci deploy docker when push on branch["main"] * check version number on pull request * remove ci_deploy_docker on pull request * correctly get the version number * change version number to test ci_deploy_docker * fix tag cicd trigger * new version number to test cicd * change error message to be more precise * test a better test for cicd * clean a commit * change the version number * remove useless condition
- Loading branch information
1 parent
8504c85
commit 591ee4c
Showing
4 changed files
with
128 additions
and
0 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,85 @@ | ||
|
||
name: ci_deploy_docker | ||
|
||
on: | ||
push: | ||
# Run deployment on every new version tag and every push to main | ||
branches: [ "main" ] | ||
tags: | ||
- v*.*.* | ||
|
||
env: | ||
IMAGE_NAME: ${{ github.repository }} | ||
REGISTRY: ghcr.io | ||
TEST_TAG: ${{ github.repository }}:test | ||
|
||
jobs: | ||
deploy_docker: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set version number | ||
run: | | ||
echo "VERSION=v$(python -m version)" >> $GITHUB_ENV | ||
- name: Check tag and version number consistency | ||
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | ||
run: | | ||
if [[ ${{ github.ref_name }} == ${{ env.VERSION }} ]] | ||
then | ||
echo "OK: Tag name and version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) match" | ||
else | ||
echo "NOK: Tag name and version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) don't match" | ||
exit 1 | ||
fi | ||
- name: Build the Docker image | ||
id: build | ||
uses: docker/build-push-action@v5 | ||
with: | ||
load: true | ||
tags: ${{ env.TEST_TAG }} | ||
|
||
# run the test on the docker image | ||
- name: Run tests in docker image | ||
run: > | ||
docker run | ||
--ipc=host | ||
${{ env.TEST_TAG }} | ||
python -m pytest ./test -s --log-cli-level DEBUG | ||
# Login against a Docker registry except on PR | ||
# https://github.com/docker/login-action | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Extract metadata (tags, labels) for Docker | ||
# https://github.com/docker/metadata-action | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
# Build an Docker image with Buildx (don't on PR) | ||
# https://github.com/docker/build-push-action | ||
- name: Build and push Docker image | ||
id: build-and-push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
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,32 @@ | ||
name: ci_pytest | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
|
||
# See https://github.com/marketplace/actions/setup-micromamba | ||
- name: setup-micromamba | ||
uses: mamba-org/[email protected] | ||
with: | ||
micromamba-version: '1.5.8-0' # temporary fix as setup-mircomamba hangs with later mamba version | ||
environment-file: environment.yml | ||
environment-name: patchwork # activate the environment | ||
cache-environment: true | ||
cache-downloads: true | ||
generate-run-shell: true | ||
|
||
- name: Run tests with pytest | ||
shell: micromamba-shell {0} | ||
run: python -m pytest ./test -s --log-cli-level DEBUG |
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,7 @@ | ||
# CHANGELOG | ||
|
||
## 1.0.0 | ||
version initiale : | ||
- découpe et sélection des fichiers lidar | ||
- ajout de points d'un fichier lidar donneur vers un fichier receveur | ||
- ajout de l'intégration continue |
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,4 @@ | ||
__version__ = "1.0.0" | ||
|
||
if __name__ == "__main__": | ||
print(__version__) |