Skip to content

Commit

Permalink
Merge pull request #3 from CBICA/spiros-dev
Browse files Browse the repository at this point in the history
Added dependabot and macos/ubuntu build tests
  • Loading branch information
euroso97 authored Nov 19, 2024
2 parents 472f0b1 + b7e3c06 commit cad0ddc
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "maven"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "weekly"
30 changes: 30 additions & 0 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: MacOS Build

# workflow dispatch has been added for testing purposes
on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ["macos-latest"]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set-up miniconda for macos and ubuntu
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.12
miniconda-version: "latest"
- name: Create conda env
run: conda create -n NCP python=3.12
- name: Install pip
run: conda run -n NCP conda install pip
- name: Build DLWMLS from source
run: |
python -m pip cache purge
pip install setuptools twine wheel
pip install -r requirements.txt
python3 -m pip install -e .
30 changes: 30 additions & 0 deletions .github/workflows/ubuntu-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Ubuntu Build

# workflow dispatch has been added for testing purposes
on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ["ubuntu-latest"]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set-up miniconda for macos and ubuntu
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.12
miniconda-version: "latest"
- name: Create conda env
run: conda create -n NCP python=3.12
- name: Install pip
run: conda run -n NCP conda install pip
- name: Build DLWMLS from source
run: |
python -m pip cache purge
pip install setuptools twine wheel
pip install -r requirements.txt
python3 -m pip install -e .

0 comments on commit cad0ddc

Please sign in to comment.