Chunel
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
23 additions and
0 deletions
-
.github/workflows/cmake4ubuntu.yml
|
@ -0,0 +1,23 @@ |
|
|
|
|
|
name: CMake4Ubuntu |
|
|
|
|
|
|
|
|
|
|
|
on: |
|
|
|
|
|
push: |
|
|
|
|
|
branches: [ "main" ] |
|
|
|
|
|
pull_request: |
|
|
|
|
|
branches: [ "main" ] |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
build: |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
- uses: actions/checkout@v3 |
|
|
|
|
|
- name: configure |
|
|
|
|
|
run: ./configure |
|
|
|
|
|
- name: make |
|
|
|
|
|
run: make |
|
|
|
|
|
- name: make check |
|
|
|
|
|
run: make check |
|
|
|
|
|
- name: make distcheck |
|
|
|
|
|
run: make distcheck |