Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit ae91da3

Browse files
committed
paths
1 parent 69cb6b2 commit ae91da3

File tree

1 file changed

+16
-19
lines changed

1 file changed

+16
-19
lines changed

.github/workflows/ohno.yml

+16-19
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,36 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v2
1111

12-
- name: explore OHNO
13-
run: cd OHNO
14-
1512
- name: install beef
1613
run: sudo apt install -y beef
1714
- name: brainfuck
18-
run: beef ohno.bf
15+
run: beef OHNO/ohno.bf
1916

2017
- name: install cobol compiler
2118
run: sudo apt install -y gnucobol
2219
- name: compile cobol
23-
run: cobc -o ohno.cbl.out -x ohno.cbl
20+
run: cobc -o ohno.cbl.out -x OHNO/ohno.cbl
2421
- name: cobol
2522
run: ./ohno.cbl.out
2623

2724
- name: install java
2825
run: sudo apt install -y default-jre
2926
- name: compile java
30-
run: javac ohno.java
27+
run: javac OHNO/ohno.java
3128
- name: java
3229
run: java ohno
3330

3431
- name: install python
3532
run: sudo apt install -y python
3633
- name: python
37-
run: python ohno.py
34+
run: python OHNO/ohno.py
3835

3936
- name: install c compilers #(yes plural so we don't fight over clang vs gcc :)
4037
run: sudo apt install -y gcc clang
4138
- name: compile c
4239
run: |
43-
gcc -o ohno.gcc.out ohno.c
44-
clang -o ohno.clang.out ohno.c
40+
gcc -o ohno.gcc.out OHNO/ohno.c
41+
clang -o ohno.clang.out OHNO/ohno.c
4542
- name: c
4643
run: ./ohno.gcc.out
4744
- name: clang
@@ -51,8 +48,8 @@ jobs:
5148
run: sudo apt install -y clang g++
5249
- name: compile c++
5350
run: |
54-
g++ -o ohno.g++.out ohno.cpp
55-
clang -i ohno.clang++.out ohno.cpp
51+
g++ -o ohno.g++.out OHNO/ohno.cpp
52+
clang -i ohno.clang++.out OHNO/ohno.cpp
5653
- name: g++
5754
run: ./ohno.g++.out
5855
- name: clang++
@@ -61,22 +58,22 @@ jobs:
6158
- name: install haskell compiler
6259
run: sudo apt install -y ghc
6360
- name: compile haskell
64-
run: ghc -no-keep-o-files -no-keep-hi-files -o ohno.hs.out ohno.hs
61+
run: ghc -no-keep-o-files -no-keep-hi-files -o ohno.hs.out OHNO/ohno.hs
6562
- name: haskell
6663
run: ./ohno.hs.out
6764

6865
- name: install node
6966
run: sudo apt install -y nodejs
7067
- name: js
71-
run: node ohno.js
68+
run: node OHNO/ohno.js
7269

7370
- name: install shells #(hi fish users)
7471
run: sudo apt install --ignore-missing -y bash fish ash zsh yash xonsh
7572
- name: sh
7673
run: |
77-
bash ohno.sh
78-
fish ohno.sh
79-
ash ohno.sh
80-
zsh ohno.sh
81-
yash ohno.sh
82-
xonsh ohno.sh
74+
bash OHNO/ohno.sh
75+
fish OHNO/ohno.sh
76+
ash OHNO/ohno.sh
77+
zsh OHNO/ohno.sh
78+
yash OHNO/ohno.sh
79+
xonsh OHNO/ohno.sh

0 commit comments

Comments
 (0)