-
Notifications
You must be signed in to change notification settings - Fork 42
86 lines (72 loc) · 2.1 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Default pipeline
on:
push:
branches:
- '*'
workflow_dispatch:
pull_request:
branches:
- '*'
permissions:
contents: write
jobs:
setup:
name: Setup environment and install dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache Magic installation
uses: actions/cache@v3
with:
path: ~/.modular
key: ${{ runner.os }}-magic-${{ hashFiles('**/lockfiles') }}
- name: Install Magic
run: |
if [ ! -d ~/.modular ]; then
curl -ssL https://magic.modular.com | bash
fi
echo "$HOME/.modular/pkg/packages.modular.com_mojo/bin" >> $GITHUB_PATH
source $HOME/.bash_profile
test:
name: Run tests
runs-on: ubuntu-latest
needs: setup
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Restore Magic installation
uses: actions/cache@v3
with:
path: ~/.modular
key: ${{ runner.os }}-magic-${{ hashFiles('**/lockfiles') }}
- name: Setup Magic PATH
run: |
echo "$HOME/.modular/pkg/packages.modular.com_mojo/bin" >> $GITHUB_PATH
source $HOME/.bash_profile
- name: Run the test suite
run: mojo run run_tests.mojo
package:
name: Create package
runs-on: ubuntu-latest
needs: setup
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Restore Magic installation
uses: actions/cache@v3
with:
path: ~/.modular
key: ${{ runner.os }}-magic-${{ hashFiles('**/lockfiles') }}
- name: Setup Magic PATH
run: |
echo "$HOME/.modular/pkg/packages.modular.com_mojo/bin" >> $GITHUB_PATH
source $HOME/.bash_profile
- name: Run the package command
run: mojo package lightbug_http -o lightbug_http.mojopkg
- name: Upload package to release
uses: svenstaro/upload-release-action@v2
with:
file: lightbug_http.mojopkg
tag: latest-build
overwrite: true