From 377827f79c89095f6c1e487cc23f2e0984f442be Mon Sep 17 00:00:00 2001 From: mauzey1 Date: Mon, 26 Aug 2024 09:04:38 -0700 Subject: [PATCH] Try linux build --- .github/workflows/nightly-build.yml | 29 ++++++++--------------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 1f1af0d4..b450c3c6 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -1,12 +1,6 @@ name: CMOR Nightly Build run-name: CMOR Nightly Build -on: - push: - branches: - - "main" - pull_request: - branches: - - "main" +on: push jobs: nightly: @@ -14,20 +8,13 @@ jobs: strategy: matrix: runner: - - RUNNER_OS: 'macos-14' - OS: osx-arm64 - OS_NAME: osx_arm64 - MINICONDA_INSTALLER_URL: https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh - C_COMPILER: clang_osx-arm64 - FORTRAN_COMPILER: gfortran_osx-arm64 - PROJECT_DIR: workdir/macos_arm64 - - RUNNER_OS: 'macos-13' - OS: osx-64 - OS_NAME: osx_64 - MINICONDA_INSTALLER_URL: https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh - C_COMPILER: clang_osx-64 - FORTRAN_COMPILER: gfortran_osx-64 - PROJECT_DIR: workdir/macos_64 + - RUNNER_OS: 'ubuntu-latest' + OS: linux-64 + OS_NAME: linux_64 + MINICONDA_INSTALLER_URL: https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh + C_COMPILER: gcc_linux-64 + FORTRAN_COMPILER: gfortran_linux-64 + PROJECT_DIR: workdir/linux python_version: ['3.10'] runs-on: ${{ matrix.runner.RUNNER_OS }} env: