Skip to content

Commit

Permalink
try add CLI to build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierlabayle committed Sep 6, 2024
1 parent ef52065 commit 3dbe0cf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,50 @@ on:
- completed

jobs:
push-to-registries:
build-cli:
name: Build CLI - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
version:
- '1'
os:
- ubuntu-latest
arch:
- 'x64'
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- name: Build
run: julia --project --startup-file=no deps/build_app.jl
- uses: actions/upload-artifact@v4
with:
name: tmle-${{ matrix.os }}-${{ matrix.arch }}
path: tmle
build-and-push-docker-image:
name: Build and push docker image to registries
runs-on: ubuntu-latest
steps:
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10

- name: Checkout
uses: actions/checkout@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
Expand All @@ -44,7 +64,6 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Build and push
uses: docker/build-push-action@v2
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ jobs:
with:
files: lcov.info
- uses: julia-actions/julia-processcoverage@v1
# - name: Build App
# run: julia --project --startup-file=no deps/build_app.jl
# - uses: actions/upload-artifact@v4
# with:
# name: tmle-${{ matrix.os }}-${{ matrix.arch }}
# path: tmle
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3dbe0cf

Please sign in to comment.