Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freebsd CI fix #921

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/build-and-test-on-freebsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,24 +40,22 @@ jobs:

- name: Build and Test on FreeBSD
id: build-and-test-on-freebsd
uses: vmactions/freebsd-vm@v0
uses: cross-platform-actions/action@v0.21.0
timeout-minutes: 20
with:
envs: 'ATOMVM_EXAMPLE'
usesh: true
sync: rsync
copyback: false

prepare: |
pkg install -y curl cmake gperf erlang elixir

memory: 1024
shell: sh
operating_system: freebsd
version: '13.2'
environment_variables: 'ATOMVM_EXAMPLE'
run: |

echo "%%"
echo "%% System Info"
echo "%%"
echo "**freebsd-version:**"
freebsd-version
sudo pkg install -y curl cmake gperf erlang elixir
echo "**uname:**"
uname -a
echo "**C Compiler version:**"
Expand Down Expand Up @@ -118,7 +116,7 @@ jobs:
echo "%%"
echo "%% Running install ..."
echo "%%"
make install
sudo make install
atomvm examples/erlang/hello_world.avm
atomvm -v
atomvm -h
Expand Down