Skip to content

Commit

Permalink
setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
keisku committed Mar 24, 2024
1 parent 944131e commit de70598
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: [push, pull_request]
name: test
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build gmonbuildenv
run: docker build -t gmonbuildenv -f Dockerfile.buildenv .
- name: Build gmone2e
run: docker build -t gmone2e -f Dockerfile.e2e .
- name: docker run --rm --privileged -v ./bin/gmon:/usr/bin/gmon -v /sys/kernel/debug:/sys/kernel/debug:ro gmone2e

0 comments on commit de70598

Please sign in to comment.