-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5f768c2
Showing
6 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
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.
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
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 |
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
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.
Empty file.