-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (47 loc) · 1.52 KB
/
e2e_test_darwin.yaml
File metadata and controls
53 lines (47 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: E2E tests on Darwin MacOS
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
schedule:
# Runs at 12am UTC
- cron: "0 0 * * *"
jobs:
e2e_tests:
strategy:
matrix:
# ref: https://github.com/actions/runner-images
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.24.2' # The Go version to download (if necessary) and use.
- name: build vfox (MacOS)
run: |
git clone https://github.com/version-fox/vfox.git
cd vfox
go build -o vfox
chmod +x vfox
cp vfox /usr/local/bin
- name: add vfox-erlang plugin (Unix-like)
run: |
vfox add --source https://github.com/version-fox/vfox-erlang/archive/${GITHUB_REF}.zip erlang
- name: install Erlang/OTP by vfox-erlang plugin (Darwin)
if: runner.os == 'MacOS'
run: |
brew install --force autoconf libxslt fop wxwidgets openssl
export MAKEFLAGS=-j4
vfox install erlang@26.2.3
eval "$(vfox activate bash)"
vfox use -g erlang@26.2.3
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
cd assets
erlc hello.erl
erl -noshell -s hello hello_world -s init stop
erl -eval 'erlang:display(shell_docs:get_doc(lists)), halt().' -noshell