Compare commits
3 Commits
master
...
lmm30-use-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a24a52819 | ||
|
|
34dfed15a1 | ||
|
|
6196019fcf |
14
.github/workflows/buildLoadup.yml
vendored
14
.github/workflows/buildLoadup.yml
vendored
@@ -124,6 +124,8 @@ jobs:
|
||||
# Checkout latest commit
|
||||
- name: Checkout Medley
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
# Setup release tag
|
||||
- name: Setup Release Tag
|
||||
@@ -191,18 +193,6 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.MAIKO_TOKEN }}
|
||||
|
||||
# Checkout Notecards and tar it in the tarballsdir
|
||||
- name: Checkout Notecards
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/notecards
|
||||
path: ./notecards
|
||||
- name: Tar notecards into tarball dir
|
||||
run: |
|
||||
mv ./notecards ../notecards
|
||||
cd ../notecards
|
||||
git archive --format=tgz --output="${TARBALL_DIR}/notecards.tgz" --prefix=notecards/ main
|
||||
|
||||
# Install vnc
|
||||
- name: Install vnc
|
||||
run: sudo apt-get update && sudo apt-get install -y tightvncserver
|
||||
|
||||
27
.github/workflows/doHCFILES.yml
vendored
27
.github/workflows/doHCFILES.yml
vendored
@@ -51,33 +51,8 @@ jobs:
|
||||
|
||||
- name: Checkout Medley repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Checkout maiko
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/maiko
|
||||
path: ./maiko
|
||||
|
||||
- name: Checkout notecards
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/notecards
|
||||
path: ./notecards
|
||||
|
||||
- name: Checkout loops
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/loops
|
||||
path: ./loops
|
||||
|
||||
- name: Checkout test
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository_owner }}/test
|
||||
path: ./test
|
||||
|
||||
- name: Cleanup .git for notecards, loops, test
|
||||
run: rm -rf ./notecards/.git ./loops/.git ./test/.git
|
||||
submodules: true
|
||||
|
||||
- name: Download Maiko
|
||||
run: |
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -5,9 +5,6 @@ tmp/*
|
||||
# releases directory
|
||||
releases/*
|
||||
|
||||
# maiko directory
|
||||
maiko/
|
||||
|
||||
|
||||
# all PDFs (those explicitly checked in aren't ignored
|
||||
# normally when you have derived files, you ignore them from git
|
||||
|
||||
20
.gitmodules
vendored
20
.gitmodules
vendored
@@ -0,0 +1,20 @@
|
||||
[submodule "maiko"]
|
||||
path = maiko
|
||||
url = https://github.com/Interlisp/maiko
|
||||
branch = master
|
||||
[submodule "notecards"]
|
||||
path = notecards
|
||||
url = https://github.com/Interlisp/notecards
|
||||
branch = main
|
||||
[submodule "loops"]
|
||||
path = loops
|
||||
url = https://github.com/Interlisp/loops
|
||||
branch = main
|
||||
[submodule "test"]
|
||||
path = test
|
||||
url = https://github.com/Interlisp/test
|
||||
branch = master
|
||||
[submodule "online"]
|
||||
path = online
|
||||
url = https://github.com/Interlisp/online
|
||||
branch = main
|
||||
|
||||
1
loops
Submodule
1
loops
Submodule
Submodule loops added at 8508dd0d9a
1
maiko
Submodule
1
maiko
Submodule
Submodule maiko added at d791b1d332
1
notecards
Submodule
1
notecards
Submodule
Submodule notecards added at 32defaee14
1
online
Submodule
1
online
Submodule
Submodule online added at 9ae1f13088
@@ -5,18 +5,20 @@ HCFILES writes in {MEDLEYDIR} but it should write in something like (SRCDIR)
|
||||
|
||||
## Remove extraneous files
|
||||
|
||||
There are lots of ways to get there but basically set up the execution environment with everything clean but notecards loops, test are copied in. If you don't make fresh, at least 'git clean'.
|
||||
There are lots of ways to get there but basically set up the execution environment with everything clean. If you don't make fresh, at least 'git clean'.
|
||||
|
||||
```
|
||||
gh repo clone interlisp/medley
|
||||
gh repo clone interlisp/notecards
|
||||
gh repo clone interlisp/loops
|
||||
gh repo clone interlisp/test
|
||||
|
||||
cp -r notecards loops test medley
|
||||
rm -rf notecards/.git loops/.git test/.git
|
||||
git clone --recurse-submodules https://github.com/Interlisp/medley
|
||||
```
|
||||
|
||||
Or, if you already have a clone:
|
||||
|
||||
```
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
This will populate notecards, loops, test (and maiko) inside the medley directory.
|
||||
|
||||
# making the .pdfs and index.html files
|
||||
|
||||
## best start with a fresh loadup
|
||||
@@ -62,6 +64,5 @@ after you've done this, you can clean up (from the medley folder):
|
||||
```
|
||||
find . -iname "*.pdf" -exec rm {} \;
|
||||
git remote set-url --push https://github.com/Interlisp/medley
|
||||
rm -rf loops notecards test
|
||||
```
|
||||
|
||||
|
||||
1
test
Submodule
1
test
Submodule
Submodule test added at 9f6d26f719
Reference in New Issue
Block a user