Skip to content

Commit

Permalink
limit envs to test
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Nov 10, 2023
1 parent e72442b commit 451629d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Linux

on: [push]
on:
push:
branches:
- master
- develop
- '!gh-pages'
- '!checkCI_macos'
tags: '*'

jobs:
build:
Expand Down
16 changes: 9 additions & 7 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, macos-11]
compiler: [c++, g++-12]
include:
- os: macos-12
compiler: g++-11
- os: macos-11
compiler: g++-10
os: [macos-11]
compiler: [g++-10]
# os: [macos-12, macos-11]
# compiler: [c++, g++-12]
# include:
# - os: macos-12
# compiler: g++-11
# - os: macos-11
# compiler: g++-10

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 451629d

Please sign in to comment.