Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 53bd95b
Author: Andrew Nikitin <andrew.nikitin@cheqd.io>
Date:   Fri Aug 12 17:22:30 2022 +0300

    build(docker): Move to Alpine images for Dockerfile (#356)

    * Get rid of .env varaiables

    * Add default vars for docker compose down

    * Get rid of debug

    * Create dependabot.yml

    * Deactivate test workflow

    * Update lint.yml

    * Rename regen references

    * Update Stage 1 build

    * Remove Cosmovisor stages

    * Remove unecessary Hadolint path

    * Move Dockerfile to top-level context

    * Update .Dockerignore

    * Change build folder

    * Remove unnecessary packages from Stage 1

    * Update Makefile

    * Switched version tag to take any version, not just `v*` prefix
    * Changed ldflags to `cheqd-node` instead of `cheqd-noded`

    * Switch release dispatch guard

    * Dockerfile back in docker folder

    * Delete .Dockerignore

    * Honestly, changing a filename to lowercase should be easier

    * Update Dockerfile

    * Update Dockerfile

    * Update Dockerfile

    * Update Dockerfile

    * Delete cosmovisor.sh

    * Pick up Go version from go.mod

    * Moved unit tests to build job

    * Change to Docker Buildx

    * Disable release

    * Add dotenv linter

    * Update Makefile

    * Reinstate user permissions

    * Update docker-compose.env

    * Set latest recommended version

    * Set Docker image version

    * Update container.env

    * Added healthcheck

    * Entrypoint fix

    * Update Dockerfile

    * Change entrypoint copy order

    * Remove dockerignore for docker folder

    * Add protobuf generation to Docker job

    * Save Docker test image

    * Update test.yml

    * Reactivate test

    * Update Makefile

    * Change ldflag for name

    * Fixed incorrect folder move

    * Go mod tidy

    * Update dispatch.yml

    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>
  • Loading branch information
ankurdotb committed Aug 12, 2022
1 parent 6d2de0f commit 0b3c496
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ concurrency:

jobs:

# call-lint:
# name: "Lint"
# uses: ./.github/workflows/lint.yml
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml

# call-build:
# name: "Build"
# needs: call-lint
# uses: ./.github/workflows/build.yml
# secrets: inherit
call-build:
name: "Build"
needs: call-lint
uses: ./.github/workflows/build.yml
secrets: inherit

# call-test:
# name: "Test"
Expand All @@ -24,10 +24,11 @@ jobs:
# with:
# VERSION: ${{ needs.call-build.outputs.VERSION }}

call-release:
name: "Release"
# needs: [call-test, call-build]
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/release.yml
with:
RELEASE_VERSION: ${{ needs.call-build.outputs.VERSION }}
# call-release:
# name: "Release"
# # needs: [call-test, call-build]
# needs: call-build
# if: ${{ github.ref_protected == true }}
# uses: ./.github/workflows/release.yml
# with:
# RELEASE_VERSION: ${{ needs.call-build.outputs.VERSION }}

0 comments on commit 0b3c496

Please sign in to comment.