Skip to content

Commit

Permalink
chore: Add CI workflow to test-build with Docker (#3)
Browse files Browse the repository at this point in the history
* chore: Add CI workflow to test-build with Docker

* chore: Fix CBL_FC_SOCKET/build.sh permissions
  • Loading branch information
meyfa authored Apr 1, 2024
1 parent b46834e commit 1d1a87a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

- name: Build
id: docker-build
uses: docker/build-push-action@v5
with:
context: ./
push: false
cache-from: type=gha
cache-to: type=gha,mode=max
Empty file modified CBL_GC_SOCKET/build.sh
100644 → 100755
Empty file.

0 comments on commit 1d1a87a

Please sign in to comment.