Skip to content

Commit

Permalink
second stab at updating actions for self-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mtao committed Sep 8, 2023
1 parent 4352af8 commit 9634736
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:

Linux:
name: ${{ matrix.name }} (${{ matrix.config }})
runs-on: [self-hosted, Linux]
runs-on: [self-hosted,Linux]
#runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest]
os: [ubuntu-latest]
config: [Debug, Release]
# include:
# - os: ubuntu-latest
# name: Linux
include:
- os: ubuntu-latest
name: Linux
steps:
- name: Checkout repository
uses: actions/checkout@v1
Expand Down Expand Up @@ -79,17 +79,17 @@ jobs:

MacOS:
name: ${{ matrix.name }}-${{ matrix.arch }} (${{ matrix.config }})
runs-on: ${{ matrix.os }}
#runs-on: ${{ matrix.os }}
runs-on: [self-hosted, MacOS]
strategy:
fail-fast: false
matrix:
#os: [macos-latest]
#arch: [x86_64] # arm64 no arm as GMP is binary
os: [macos-latest]
arch: [ARM64] # arm64 no arm as GMP is binary
config: [Debug, Release]
#include:
# - os: macos-latest
# name: macOS
include:
- os: macos-latest
name: macOS

steps:
- name: Checkout repository
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
fetch-depth: 10
- uses: seanmiddleditch/gha-setup-ninja@master

- name: Stetup Conda
- name: Setup Conda
uses: s-weigand/setup-conda@v1
with:
conda-channels: anaconda, conda-forge
Expand Down

0 comments on commit 9634736

Please sign in to comment.