Skip to content

Commit

Permalink
46, 47: force prod ci build, upgrade codecov plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Jan 26, 2024
1 parent 1439a2e commit 9e83f94
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ jobs:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and Push
- name: Build CI
uses: docker/build-push-action@v3
with:
context: .
Expand All @@ -32,3 +31,4 @@ jobs:
build-args: |
VERSION=latest
CARGO_INCREMENTAL=0
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Generate code coverage
run: RUST_LOG=xps_gateway=info,registry=info,inbox=info,messaging=info,gateway_types=info cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/prod-ci-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Prod Image CI

on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- "*"

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Prod Image CI
uses: docker/build-push-action@v3
with:
context: .
file: prod/Dockerfile
platforms: linux/amd64
push: false
build-args: |
VERSION=latest
CARGO_INCREMENTAL=0

0 comments on commit 9e83f94

Please sign in to comment.