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.
1 parent e5182bf commit e23047eCopy full SHA for e23047e
.github/workflows/ci.yml
@@ -43,7 +43,9 @@ jobs:
43
44
- run: ./roc_nightly/roc version
45
46
- - run: sudo apt install -y expect ncat valgrind
+ - run: |
47
+ sudo apt update
48
+ sudo apt install -y expect ncat valgrind
49
# expect for testing
50
# ncat for tcp-client example
51
ci/all_tests.sh
@@ -38,11 +38,6 @@ architecture=$(uname -m)
38
for roc_file in $EXAMPLES_DIR*.roc; do
39
base_file=$(basename "$roc_file")
40
41
- # Skip env-var.roc when on aarch64
42
- if [ "$architecture" == "aarch64" ] && [ "$base_file" == "env-var.roc" ]; then
- continue
- fi
-
if [ "$base_file" == "temp-dir.roc" ]; then
$ROC build $roc_file $ROC_BUILD_FLAGS --linker=legacy
else
0 commit comments