Skip to content

Commit

Permalink
actions are difficult
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Aug 22, 2024
1 parent 4433e82 commit 65758b9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/timbl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,14 @@ jobs:
${{ github.actor }} started a build of
${{ github.event.repository.name }}
[${{ steps.extract_branch.outputs.branch }}]
"${{ github.event.head_commit.message }}"
build:
runs-on: ${{ matrix.os }}
needs: notification
strategy:
matrix:
os: [ubuntu-latest, macos-14]
os: [ubuntu-latest, macos-14, macos-latest]
compiler: [g++-12, clang++]

steps:
Expand All @@ -54,10 +55,8 @@ jobs:
sudo apt-get install pkg-config autoconf-archive
else
brew upgrade
brew install pkg-config
brew install autoconf-archive
brew install libtool
brew install autoconf
brew install automake
fi
- name: Install Dependencies
Expand Down Expand Up @@ -109,10 +108,12 @@ jobs:
run: make
continue-on-error: true
- name: install
id: install
if: ${{ steps.make.outcome == 'success' }}
run: sudo make install
continue-on-error: true
- name: check
- name: make check
id: check
if: ${{ steps.install.outcome == 'success' }}
env:
CXX: ${{ matrix.compiler }}
Expand Down

0 comments on commit 65758b9

Please sign in to comment.