Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Changes to release-pipeline, adding additional automation for setting up nodes locally. #1757

Merged
merged 28 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e18f08f
ci: adding pipeline to build and push ubuntu, and macos docker images…
gzukel Feb 12, 2024
5370e15
ci: adding pipeline to build and push ubuntu, and macos docker images…
gzukel Feb 12, 2024
f38fd72
adjusted timeouts and did a global vs individual timeout
gzukel Feb 13, 2024
bf43896
Merge branch 'develop' into ci-add-docker-build-and-push
gzukel Feb 13, 2024
b73b74a
updated change log location and added arm support
gzukel Feb 13, 2024
a3d128f
install docker for mac build
gzukel Feb 13, 2024
0b3c192
starting docker after installing on the mac
gzukel Feb 13, 2024
1fd9516
modifying the way im installing docker on the macos runners
gzukel Feb 13, 2024
fdc610d
modifying the way im installing docker on the macos runners
gzukel Feb 13, 2024
50ba0e8
Testing
gzukel Feb 14, 2024
64938f8
updated
gzukel Feb 14, 2024
e6fc074
Adjust the pipeline to install docker and run docker for the mac runn…
gzukel Feb 14, 2024
aa57f46
Adjust the pipeline to install docker and run docker for the mac runn…
gzukel Feb 14, 2024
e94c877
Merge branch 'develop' into ci-add-docker-build-and-push
gzukel Feb 14, 2024
abc9864
Adjust the pipeline to install docker and run docker for the mac runn…
gzukel Feb 14, 2024
b2b147a
Merge branch 'develop' into ci-add-docker-build-and-push
gzukel Feb 15, 2024
5b23b42
making some release pipeline changes. initial push for testing of tho…
gzukel Feb 15, 2024
879fb47
fixing if conditions for skip checks
gzukel Feb 15, 2024
d5495af
trim the user input vesion to check major
gzukel Feb 15, 2024
2fcd3ec
trim the user input vesion to check major
gzukel Feb 15, 2024
ef3f08c
trim the user input vesion to check major
gzukel Feb 15, 2024
5b9a240
adjusted the approver step
gzukel Feb 15, 2024
d0bc29f
adjusted the approver step
gzukel Feb 15, 2024
6c105a1
updated version description
gzukel Feb 15, 2024
2e7ccb7
adding charlie to approvers
gzukel Feb 15, 2024
4fcc554
adding charlie to approvers
gzukel Feb 15, 2024
cc8035d
adding charlie to approvers
gzukel Feb 15, 2024
44e7f44
removed nosec, fix typo, removed unessecary comment
gzukel Feb 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

docker_build_mac:
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -73,6 +73,17 @@ jobs:
run: |
echo "GITHUB_TAG_MAJOR_VERSION=${{ github.event.inputs.version }}" >> ${GITHUB_ENV}

- name: Setup docker and docker-compose (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker docker-compose

# Link the Docker Compose v2 plugin so it's understood by the docker CLI
mkdir -p ~/.docker/cli-plugins
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose

colima start

- name: "BUILD:PUSH:MONITORING:DOCKER:IMAGE"
uses: ./.github/actions/build-docker-images-generic
with:
Expand Down
Loading
Loading