-
Notifications
You must be signed in to change notification settings - Fork 3
60 lines (56 loc) · 1.51 KB
/
ubuntu.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
#
# .github/workflows/ubuntu.yml
# Wopslang Github CI (Action)
#
# 2023, Wops Team
#
name: CI - Ubuntu OS
on:
push:
branches: [main, lab]
pull_request:
branches: [main, lab]
permissions: read-all
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: mkdir sample/lib; make CI-TEST-Wopslang;
Fizzbuzz:
needs: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/;
- name: run
run: cd sample; ./Wopslang fizzbuzz.wops debug > out;
Hailstone_Sequence:
needs: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/;
- name: run
run: cd sample; tree; ./Wopslang hailstone_sequence.wops debug > out;
Hello_Wopslang:
needs: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/;
- name: run
run: cd sample; tree; ./Wopslang hello_wopslang.wops debug > out;
Multiline:
needs: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/;
- name: run
run: cd sample; echo "1" > input; tree; ./Wopslang multiline.wops debug < input > out;