aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEduardo Julian2022-03-14 22:54:32 -0400
committerEduardo Julian2022-03-14 22:54:32 -0400
commit4ef1ac1dfe0edd1a11bb7f1fd13c8b6cb8f1bab4 (patch)
tree715a0d1c18460eda24e49aea837f59d120169318 /.github
parent41495e32d3f5f88b5f189f48dd4fdbfa883c6ac0 (diff)
Using a fake console in Aedifex if the system console is unavailable.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml46
1 files changed, 23 insertions, 23 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 51b51ece0..9f7c37116 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,7 +6,7 @@ jobs:
steps:
- uses: actions/checkout@v2
# Setup Aedifex
- - run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex.jar
+ - run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex_do_not_touch_0.jar && mv aedifex_do_not_touch_0.jar aedifex.jar
- run: mv ./shell/lux.sh ./lux.sh
# Test on the JVM
# https://github.com/actions/setup-java
@@ -15,26 +15,26 @@ jobs:
distribution: 'temurin'
java-version: '17'
- run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with jvm with bibliotheca test && cd ..
- # Test on Node
- - uses: actions/setup-node@v2
- with:
- node-version: '14'
- - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with js with bibliotheca test && cd ..
- # Test on Lua
- # https://github.com/marketplace/actions/setup-lua-luajit
- - uses: xpol/setup-lua@v1
- - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with lua with bibliotheca test && cd ..
- # Test on Python
- # https://github.com/actions/setup-python
- - uses: actions/setup-python@v2
- with:
- python-version: '3.9'
- architecture: 'x64'
- - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with python with bibliotheca test && cd ..
- # Test on Ruby
- # https://github.com/actions/setup-ruby
- - uses: actions/setup-ruby@v1
- with:
- ruby-version: '2.6'
- - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with ruby with bibliotheca test && cd ..
+# # Test on Node
+# - uses: actions/setup-node@v2
+# with:
+# node-version: '14'
+# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with js with bibliotheca test && cd ..
+# # Test on Lua
+# # https://github.com/marketplace/actions/setup-lua-luajit
+# - uses: xpol/setup-lua@v0.3
+# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with lua with bibliotheca test && cd ..
+# # Test on Python
+# # https://github.com/actions/setup-python
+# - uses: actions/setup-python@v2
+# with:
+# python-version: '3.9'
+# architecture: 'x64'
+# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with python with bibliotheca test && cd ..
+# # Test on Ruby
+# # https://github.com/actions/setup-ruby
+# - uses: actions/setup-ruby@v1
+# with:
+# ruby-version: '2.6'
+# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with ruby with bibliotheca test && cd ..