Compare commits

..

14 Commits

Author SHA1 Message Date
semantic-release-bot
a0ae1ab14e chore(release): 1.7.10 [skip ci]
## [1.7.10](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.9...v1.7.10) (2023-12-03)

### Build

* fix build pipeline order ([1cf67d1](1cf67d139b))

### CI

* add branches to refs for building ([e0da9b1](e0da9b110e))
* Add push latest tag on master ([8e6130d](8e6130d919))
* fix ordering of stages ([385c1d8](385c1d88d8))
2023-12-03 08:20:30 +00:00
068dcdb5d6 Merge branch 'fix-build-2' into 'master'
Build: fix build pipeline order

See merge request erichardson/py-eagle-mqtt!35
2023-12-03 08:19:35 +00:00
1cf67d139b Build: fix build pipeline order 2023-12-03 08:19:07 +00:00
5e1b586f01 Merge branch 'fix-build' into 'master'
CI: add branches to refs for building

See merge request erichardson/py-eagle-mqtt!34
2023-12-03 08:16:06 +00:00
e0da9b110e CI: add branches to refs for building 2023-12-03 08:15:37 +00:00
9d4a95ad6a Merge branch 'fix-ordering-of-stages' into 'master'
CI: fix ordering of stages

See merge request erichardson/py-eagle-mqtt!33
2023-12-03 08:02:23 +00:00
385c1d88d8 CI: fix ordering of stages 2023-12-03 08:02:18 +00:00
bcba93d333 Merge branch 'add-push-latest-stage' into 'master'
CI: Add push latest tag on master

See merge request erichardson/py-eagle-mqtt!32
2023-12-03 08:01:26 +00:00
8e6130d919 CI: Add push latest tag on master 2023-12-03 08:00:04 +00:00
semantic-release-bot
f918d64ea7 chore(release): 1.7.9 [skip ci]
## [1.7.9](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.8...v1.7.9) (2023-12-03)

### Build

* bump docker base to python:3.12-alpine ([6489f3d](6489f3d01a))
2023-12-03 07:49:31 +00:00
51f73368f1 Merge branch 'bump-python-version' into 'master'
Build: bump docker base to python:3.12-alpine

See merge request erichardson/py-eagle-mqtt!31
2023-12-03 07:48:39 +00:00
6489f3d01a Build: bump docker base to python:3.12-alpine 2023-12-03 07:47:19 +00:00
24f6984021 Merge branch 'bump-docker-version' into 'master'
update docker to 24.0.7

See merge request erichardson/py-eagle-mqtt!30
2023-12-03 05:55:56 +00:00
dbef7acec2 update docker to 24.0.7 2023-12-03 05:52:29 +00:00
3 changed files with 52 additions and 5 deletions

View File

@@ -6,15 +6,19 @@
stages: stages:
#- test #- test
- build - build
#- push_local
- release - release
#- push_dockerhub - push_local
##- push_dockerhub
build: build:
image: docker:24.0.5-dind image: docker:24.0.7-dind
stage: build stage: build
only:
refs:
- tags
- branches
services: services:
- name: docker:24.0.5-dind - name: docker:24.0.7-dind
command: ["--tls=false"] command: ["--tls=false"]
variables: variables:
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
@@ -51,3 +55,26 @@ release:
artifacts: artifacts:
paths: paths:
- CHANGELOG.md - CHANGELOG.md
push local:
image: docker:24.0.7-dind
stage: push_local
services:
- name: docker:24.0.7-dind
command: ["--tls=false"]
variables:
DOCKER_DRIVER: overlay2
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
GIT_STRATEGY: none
FF_GITLAB_REGISTRY_HELPER_IMAGE: 1
only:
- master
script:
- echo $CI_COMMIT_TAG
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
- docker tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA $CI_REGISTRY_IMAGE:latest
- docker push $CI_REGISTRY_IMAGE:latest

View File

@@ -1,3 +1,23 @@
## [1.7.10](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.9...v1.7.10) (2023-12-03)
### Build
* fix build pipeline order ([1cf67d1](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/1cf67d139b8ce3954a42afeeef49262c72d9b0a5))
### CI
* add branches to refs for building ([e0da9b1](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/e0da9b110e69fc4f18f6588d297589ca71a27c08))
* Add push latest tag on master ([8e6130d](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/8e6130d9195c19933054d9a4efbeeb3d025b5301))
* fix ordering of stages ([385c1d8](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/385c1d88d85e64591fd0d3814111a7e335ea45f8))
## [1.7.9](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.8...v1.7.9) (2023-12-03)
### Build
* bump docker base to python:3.12-alpine ([6489f3d](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/6489f3d01a71fba8e1a4ac35de2b0bffdf2529bd))
## [1.7.8](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.7...v1.7.8) (2023-12-03) ## [1.7.8](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.7...v1.7.8) (2023-12-03)

View File

@@ -1,4 +1,4 @@
FROM python:3.11-alpine FROM python:3.12-alpine
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)" LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
ARG BUILD_DATE ARG BUILD_DATE