diff options
Diffstat (limited to '.github/workflows/setup_aedifex')
| -rw-r--r-- | .github/workflows/setup_aedifex/action.yml | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/setup_aedifex/action.yml b/.github/workflows/setup_aedifex/action.yml index 2b81a4fbc..bc848c2f0 100644 --- a/.github/workflows/setup_aedifex/action.yml +++ b/.github/workflows/setup_aedifex/action.yml @@ -2,11 +2,20 @@ name: 'Setup Aedifex'  runs:    using: "composite"    steps: +    # https://github.com/actions/setup-java +    - uses: actions/setup-java@v2 +      with: +        distribution: 'temurin' +        java-version: '17' +          - uses: actions/checkout@v2 +          - run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex_do_not_touch_3.jar && mv aedifex_do_not_touch_3.jar aedifex.jar        shell: bash +          - run: mv ./shell/lux.sh ./lux.sh        shell: bash +          - run: cd ./stdlib/ && ../lux.sh clean && cd ..        shell: bash  | 
