Skip to content

Commit e23047e

Browse files
authored
Try not skipping env-var example (#340)
* Update all_tests.sh * update first
1 parent e5182bf commit e23047e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343

4444
- run: ./roc_nightly/roc version
4545

46-
- run: sudo apt install -y expect ncat valgrind
46+
- run: |
47+
sudo apt update
48+
sudo apt install -y expect ncat valgrind
4749
# expect for testing
4850
# ncat for tcp-client example
4951

ci/all_tests.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ architecture=$(uname -m)
3838
for roc_file in $EXAMPLES_DIR*.roc; do
3939
base_file=$(basename "$roc_file")
4040

41-
# Skip env-var.roc when on aarch64
42-
if [ "$architecture" == "aarch64" ] && [ "$base_file" == "env-var.roc" ]; then
43-
continue
44-
fi
45-
4641
if [ "$base_file" == "temp-dir.roc" ]; then
4742
$ROC build $roc_file $ROC_BUILD_FLAGS --linker=legacy
4843
else

0 commit comments

Comments
 (0)