We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56e424b + 6bb54cc commit 061a40eCopy full SHA for 061a40e
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
github_token: ${{secrets.GITHUB_TOKEN}}
21
workflow: ci.yml
22
branch: dev
23
- name: ubuntu-gcc-11
+ name: ubuntu-gcc-10
24
path: bin
25
repo: ArkScript-lang/Ark
26
@@ -29,14 +29,16 @@ jobs:
29
run: |
30
cd bin
31
cp lib/*.arkm ../
32
- chmod u+x ark
+ chmod u+x arkscript *.so
33
+ cp arkscript ../
34
+ cp *.so ../
35
36
- name: Tests
37
shell: bash
38
- ./bin/ark --version
39
+ ./arkscript --version
40
if [ -f tests/all.ark ]; then
- ./bin/ark tests/all.ark -L ./
41
+ ./arkscript tests/all.ark -L ./
42
else
43
echo "No tests found"
44
fi
0 commit comments