We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479961c commit 0849ee7Copy full SHA for 0849ee7
.github/workflows/rust.yaml
cron.sh
@@ -0,0 +1,30 @@
1
+#!/bin/bash
2
+
3
+# cron to run the main pipeline on linux machine then use gh cli to start an actions script
4
+# === setup environment ===
5
6
+# Source the Conda activate script
7
+source /opt/anaconda3-2024.10-1/etc/profile.d/conda.sh
8
9
+# Activate Conda env
10
+conda activate boost-hr
11
12
+# Move to project home dir
13
+cd "$(dirname "$0")"
14
15
+# grab any new code changes, otherwise skip
16
+git pull --ff-only origin main
17
18
+# === run the python script ===
19
20
+cd code && python main.py 'vosslnx'
21
+cd ..
22
23
24
+# === push results to github ===
25
+git add .
26
+git commit -m "automated commit by vosslab linux"
27
+git push
28
29
+# === run gh workflow ===
30
+# temp for now
0 commit comments