aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/setup_aedifex/action.yml
blob: bc848c2f02fb6c3d58b124a63315359e09450c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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