lots of pixelink changes #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Ubuntu build" | |
on: | |
push: | |
schedule: | |
- cron: '43 5 * * *' | |
jobs: | |
install-ubuntu: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:24.04 | |
env: | |
MAGAOX_ROLE: ci | |
NEEDRESTART_SUSPEND: 'yes' | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Fetch package definitions | |
run: 'apt-get update' | |
- name: Install git for checkout action | |
run: 'apt-get install -y git' | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Cache dependencies | |
uses: actions/[email protected] | |
with: | |
path: /opt/MagAOX/ | |
key: ubuntu-24.04-dependencies-cache-v1-${{ hashFiles('setup/*', 'setup/**/*') }} | |
- run: 'bash -x setup/steps/install_ubuntu_24_packages.sh' | |
name: Install OS dependencies | |
- run: 'bash -lx setup/provision.sh' | |
name: Auto-provision | |
- run: 'bash -l setup/steps/install_MagAOX.sh' | |
name: Install MagAO-X | |
- run: 'make test' | |
name: Run tests |