updated workflow checkout version #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ircube Ubuntu, Mac OSX CI | |
on: | |
push: | |
paths: | |
- '**/ircube-x/**' | |
- '**/prepare_obs' | |
- '**/catChangeLog' | |
- .github/workflows/ircube-ubuntu-osx.yml | |
- '!**/ircube-x/debian/*' | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.host }}-${{ matrix.config.name }} | |
runs-on: ${{ matrix.host }} | |
strategy: | |
fail-fast: false | |
matrix: | |
host: [ubuntu-latest, macos-latest] | |
steps: | |
- name: extra_packages | |
run: | | |
if [ "${OS}" = "macos-latest" ] ; then brew install automake autoconf pkgconfig; fi | |
if [ "${OS}" = "ubuntu-latest" ] ; then sudo apt-get install automake autoconf; fi | |
env: | |
OS: ${{ matrix.host }} | |
- name: checkout_main | |
uses: actions/checkout@v4 | |
- name: build ircube | |
run: cd ircube-x; ./default.configure; sudo make install |