Skip to content

Commit

Permalink
removing macos runners until github has the include figured out
Browse files Browse the repository at this point in the history
  • Loading branch information
rahil-makadia committed Jun 4, 2024
1 parent b483873 commit fed2039
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/cpp_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,13 @@ on:

jobs:
prop-only:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build GRSS library
run: |
brew install gcc@14
sudo apt-get install doxygen
source initialize.sh
source build_cpp.sh -clean
- name: Run tests
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches:
- main
- dev
paths:
- "grss/version.txt"
# paths:
# - "grss/version.txt"

permissions:
id-token: write
Expand All @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-14]
os: [ubuntu-latest] #, macos-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -26,15 +26,15 @@ jobs:
with:
python-version: "3.11"
- name: Set up Xcode
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-latest'
uses: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: '15.1.0'
- name: Install doxygen
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install doxygen
- name: Install doxygen
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-latest'
run: brew install doxygen
- name: Initialize repository
run: |
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Download MacOS distribution from previous job
uses: actions/download-artifact@master
with:
name: dist-macos-14
name: dist-macos-latest
path: dist
- name: Show files
run: ls -l dist
Expand Down

0 comments on commit fed2039

Please sign in to comment.