Skip to content

Commit e731092

Browse files
committed
Update/test action
1 parent ed89a26 commit e731092

File tree

2 files changed

+27
-22
lines changed

2 files changed

+27
-22
lines changed

.github/workflows/serve-ximera-split.yml

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ env:
99
GPG_KEY: ${{ secrets.GPG_KEY }}
1010
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
1111
XIMERA_NAME: wimcalc20250904
12-
XIMERA_URL: "https://xerxes.ximera.org/"
12+
XIMERA_URL: "https://ximera.osu.edu/"
13+
# XIMERA_URL: "https://xerxes.ximera.org/"
1314
XM_TO_PROCESS: "testxourse.tex"
1415

1516
jobs:
@@ -144,17 +145,20 @@ jobs:
144145
packages: write
145146

146147
steps:
147-
- uses: actions/checkout@v4
148+
- name: Checkout code
149+
uses: actions/checkout@v4
148150
with:
149151
fetch-depth: 0
150152

151153
# Download artifact from previous job
152-
- uses: actions/download-artifact@v4
154+
- name: Restore artifacts from previous job
155+
uses: actions/download-artifact@v4
153156
with:
154157
name: htmlexport
155158
path: .
156159

157-
- run: |
160+
- name: "Serve to ${{env.XIMERA_URL}}/${{env.XIMERA_NAME}}"
161+
run: |
158162
git config --global --add safe.directory /code
159163
git config --global --add safe.directory /__w/calculus/calculus
160164
export TEXMFHOME=/root/texmf
@@ -163,17 +167,11 @@ jobs:
163167
xmlatex serve $XM_TO_PROCESS
164168
echo "✅ Published to $XIMERA_URL$XIMERA_NAME " >> $GITHUB_STEP_SUMMARY
165169
166-
# - uses: actions/cache/save@v4
170+
# - name: "Store artifacts"
171+
# uses: actions/upload-artifact@v4
167172
# with:
168-
# path: |
169-
# xmScripts/**
170-
# .git/**
171-
# key: ximeraSERVE-${{ github.ref_name }}-latest
172-
173-
- uses: actions/upload-artifact@v4
174-
with:
175-
name: serve
176-
path: .
173+
# name: serve
174+
# path: .
177175

178176
publish-ximera:
179177
name: Run serve to mooculus
@@ -184,13 +182,6 @@ jobs:
184182
environment: production
185183

186184
steps:
187-
# - uses: actions/cache/restore@v4
188-
# with:
189-
# fail-on-cache-miss: true
190-
# path: |
191-
# xmScripts/**
192-
# .git/**
193-
# key: ximeraSERVE-${{ github.ref_name }}-latest
194185
# Download final artifact
195186
- uses: actions/download-artifact@v4
196187
with:
@@ -209,4 +200,5 @@ jobs:
209200
echo "✅ Published to $XIMERA_URL$XIMERA_NAME " >> $GITHUB_STEP_SUMMARY
210201
env:
211202
XIMERA_URL: "https://xerxes.ximera.org/"
212-
XIMERA_NAME: "calculus"
203+
# XIMERA_URL: "https://ximera.osu.edu/"
204+
XIMERA_NAME: "mooculus"

testxourse.tex

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,19 @@ \part{Functions}
3535
\activity{understandingFunctions/digInCompositionOfFunctions.tex}
3636
\activity{understandingFunctions/digInInversesOfFunctions.tex}
3737

38+
39+
%% Review of famous functions
40+
\chapterstyle
41+
\activity{reviewOfFamousFunctions/titlePage.tex}
42+
\sectionstyle
43+
\activity{reviewOfFamousFunctions/breakGround.tex}
44+
\activity{reviewOfFamousFunctions/digInPolynomialFunctions.tex}
45+
% \activity{reviewOfFamousFunctions/digInRationalFunctions.tex}
46+
% \activity{reviewOfFamousFunctions/digInTrigonometricFunctions.tex}
47+
% \activity{reviewOfFamousFunctions/digInExponentialAndLogarithmeticFunctions.tex}
48+
49+
50+
3851
\part{Other}
3952

4053
\activity{higherOrderDerivativesAndGraphs/digInHigherOrderDerivativesAndGraphs.tex}

0 commit comments

Comments
 (0)