Skip to content

Commit

Permalink
Change: Replace CircleCI with GitHub Action
Browse files Browse the repository at this point in the history
Use GitHub Actions for CI/CD. We have migrated all our other pipelines
to GitHub Actions already.
  • Loading branch information
bjoernricks committed Sep 2, 2022
1 parent aa63612 commit 17b5a41
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .circleci/config.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build openvas-smb

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
compile:
runs-on: ubuntu-latest
container: ${{ github.repository }}-build:unstable
steps:
- name: Check out openvas-smb
uses: actions/checkout@v3
- name: Configure and build
run: |
mkdir build && cd build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make install

0 comments on commit 17b5a41

Please sign in to comment.