Skip to content

Commit

Permalink
Merge pull request #1 from gonuke/enter-notify
Browse files Browse the repository at this point in the history
Add github action to test build
  • Loading branch information
dean-krueger authored Oct 26, 2024
2 parents a071fa2 + f443b50 commit 721fd0d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Tricycle against standard Cyclus image

on:
workflow_dispatch:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/cyclus/cycamore_24.04_apt/cycamore:latest

steps:
- name: Preserve $HOME set in the container
run: echo HOME=/root >> "$GITHUB_ENV"

- name: Checkout Tricycle
uses: actions/checkout@v4

- name: Build Tricycle
run: |
python3 install.py
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/**

0 comments on commit 721fd0d

Please sign in to comment.