Skip to content

Commit

Permalink
Hello CI!
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Oct 29, 2024
0 parents commit 5f768c2
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
schedule:
- cron: '0 0 * * *'

jobs:
archive:
name: Archive
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Build fnalibs
run: ./build-fnalibs.sh

- name: Archive fnalibs
uses: actions/upload-artifact@v4
with:
name: fnalibs
path: fnalibs/

- name: Build fnalibs-apple
run: ./build-fnalibs-apple.sh

- name: Archive fnalibs-apple
uses: actions/upload-artifact@v4
with:
name: fnalibs-apple
path: fnalibs-apple/
Empty file added README.md
Empty file.
6 changes: 6 additions & 0 deletions build-fnalibs-apple.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

# TODO: Draw the rest of the owl

mkdir fnalibs-apple
cp fnalibs-apple.README fnalibs-apple/README.txt
6 changes: 6 additions & 0 deletions build-fnalibs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

# TODO: Draw the rest of the owl

mkdir fnalibs
cp fnalibs.README fnalibs/README.txt
Empty file added fnalibs-apple.README
Empty file.
Empty file added fnalibs.README
Empty file.

0 comments on commit 5f768c2

Please sign in to comment.