Skip to content

Commit

Permalink
Saving previous DB modification (new runtimes and pipelines) into fix…
Browse files Browse the repository at this point in the history
…tures.
  • Loading branch information
Martin Krulis committed Dec 5, 2019
1 parent 64a09ed commit 86167d6
Show file tree
Hide file tree
Showing 2 changed files with 287 additions and 92 deletions.
46 changes: 43 additions & 3 deletions fixtures/init/10-runtimes.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App\Model\Entity\RuntimeEnvironment:
- "C (GCC)"
- "[c, h]"
- GNU/Linux
- C language compiled with GCC
- C language compiled with GCC 9.2
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{c,h}\""

cpp-bison-flex:
Expand All @@ -16,7 +16,7 @@ App\Model\Entity\RuntimeEnvironment:
- "Compilers (C++, Bison, Flex)"
- "[cpp,h,hpp,y,lex]"
- GNU/Linux
- "C++17 language compiled with GCC 7.3 with Flex (2.5.37) and Bison (3.0.4) tools"
- "C++17 language compiled with GCC (9.2) with Flex (2.5.37) and Bison (3.0.4) tools"
- "- name: \"source-files-cpp\"\n type: \"file[]\"\n value: \"*.{cpp,h,hpp}\"\n- name: \"source-file-bison\"\n type: \"file\"\n value: \"*.y\"\n- name: \"source-file-flex\"\n type: \"file[]\"\n value: \"*.lex\"\n"

cxx-gcc-linux:
Expand All @@ -26,7 +26,7 @@ App\Model\Entity\RuntimeEnvironment:
- "C++ (GCC)"
- "[cpp, h, hpp]"
- GNU/Linux
- C++17 language compiled with GCC 7.3
- C++17 language compiled with GCC 9.2
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{cpp,h,hpp}\""

data-linux:
Expand All @@ -49,6 +49,26 @@ App\Model\Entity\RuntimeEnvironment:
- Pascal compiled with FreePascal
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{pas,lpr}\""

go:
__construct:
- go
- Go
- Go
- "[go]"
- GNU/Linux
- Go compiled with default Go compiler
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{go}\""

haskell:
__construct:
- haskell
- Haskell
- Haskell
- "[hs]"
- GNU/Linux
- Haskell functional language compiled with GHC compiler
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.hs\""

java:
__construct:
- java
Expand Down Expand Up @@ -89,6 +109,16 @@ App\Model\Entity\RuntimeEnvironment:
- PHP scripts executed with official PHP interpreter
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.php\""

prolog:
__construct:
- prolog
- Prolog
- "Prolog (SWI)"
- "[pl, pro]"
- GNU/Linux
- Prolog scripts executed with SWI Prolog interpreter
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{pl,pro}\""

python3:
__construct:
- python3
Expand All @@ -99,3 +129,13 @@ App\Model\Entity\RuntimeEnvironment:
- Python executed in Python 3 runtime
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.py\""

rust:
__construct:
- rust
- Rust
- Rust
- "[rs]"
- GNU/Linux
- Rust compiled with rustc compiler
- "- name: \"source-files\"\n type: \"file[]\"\n value: \"*.{rs}\""

Loading

0 comments on commit 86167d6

Please sign in to comment.