Skip to content

Commit

Permalink
chore: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nixpig committed Sep 14, 2024
1 parent 6f31236 commit a6f99a4
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
34 changes: 30 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,35 @@ jobs:
- name: build
run: make build

- name: artifact
uses: actions/upload-artifact@master
with:
name: brownie
path: tmp/bin/brownie

test:
needs: build
runs-on: ubuntu-latest
steps:
- name: node
uses: actions/setup-node@v4
with:
node_version: 20.9.0

- name: tap
run: npm install tap

- name: oci
run: |
git clone --depth=1 https://github.com/opencontainers/runtime-tools.git . \
&& make runtimetest validation-executables
- name: artifact
uses: actions/download-artifact@master
with:
name: brownie
path: tmp/bin/brownie

- name: test
run: |
git clone --depth=1 https://github.com/opencontainers/runtime-tools.git \
&& npm install tap \
&& make runtimetest validation-executables \
&& make RUNTIME=tmp/bin/brownie localvalidation
make RUNTIME=tmp/bin/brownie localvalidation
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![build](https://github.com/nixpig/brownie/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/nixpig/brownie/actions/workflows/build.yml)

# brownie

🍪 An experimental Linux container runtime; working towards OCI Runtime Spec compliance.

0 comments on commit a6f99a4

Please sign in to comment.