Skip to content

Commit 8483ff1

Browse files
authored
Merge pull request #57 from t-w/actions
Updated Github Actions, info files, the date of the version 0.8.0
2 parents a450997 + 3f14fba commit 8483ff1

18 files changed

+546
-260
lines changed

.github/workflows/autotools-build.yml renamed to .github/workflows/autotools.yml

Lines changed: 7 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,27 @@
1-
name: ADFlib autotools
1+
name: autotools
22

33
on:
44
push:
5-
branches: [ "master", "deve|", "citest" ]
5+
branches: [ "master", "devel", "citest", "citest-autotools" ]
66
tags:
77
- '**'
88
pull_request:
99
branches: [ "master", "devel" ]
1010

1111
jobs:
12-
ubuntu_native_default:
12+
ubuntu:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
conf_options: [ "", --enable-native-generic ]
1417
steps:
1518
- uses: actions/checkout@v3
1619
- name: install prereq.
1720
run: sudo apt-get update ; sudo apt-get install -y check
1821
- name: autogen
1922
run: ./autogen.sh
2023
- name: configure
21-
run: ./configure
22-
- name: make
23-
run: make
24-
- name: make check
25-
run: make check
26-
- name: make distcheck
27-
run: make distcheck
28-
- name: make install
29-
run: sudo make install
30-
- name: check installation
31-
run: find /usr/local -iname '*adf*'
32-
- name: update ldconfig
33-
run: sudo ldconfig
34-
- name: test installed command-line utils
35-
run: ./examples/tests/test-all-examples.sh /usr/local/bin
36-
37-
ubuntu_native_generic:
38-
runs-on: ubuntu-latest
39-
steps:
40-
- uses: actions/checkout@v3
41-
- name: install prereq.
42-
run: sudo apt-get update ; sudo apt-get install -y check
43-
- name: autogen
44-
run: ./autogen.sh
45-
- name: configure
46-
run: ./configure --enable-native-generic
24+
run: ./configure ${{ matrix.conf_options }}
4725
- name: make
4826
run: make
4927
- name: make check

.github/workflows/cmake-build.yml

Lines changed: 0 additions & 147 deletions
This file was deleted.

0 commit comments

Comments
 (0)