-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (98 loc) · 3.27 KB
/
test.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# This is a basic workflow to help you get started with Actions
name: test
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
strategy:
fail-fast: false
matrix:
version: [11, 12, 13]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: demarey/pharo-setup-gha@main
with:
version: ${{ matrix.version }}
useBashOnWindows: true
- name: Test installation
run: |
echo "$PATH"
echo "$PHARO"
echo "$PHARO_BASH"
# Function to check if a string starts with a given prefix
assert_starts_with() {
if [[ "$1" == "$2"* ]]; then
echo "Assertion passed: '$1' starts with '$2'."
return 0 # success
else
echo "Assertion failed: '$1' does not start with '$2'."
return 1 # failure
fi
}
PHARO_VERSION=$($PHARO --headless Pharo.image eval 'SystemVersion current printString')
assert_starts_with "$PHARO_VERSION" "'Pharo-${{ matrix.version }}" # Should pass
shell: bash
test-vm-dir:
strategy:
fail-fast: false
matrix:
version: [13]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: demarey/pharo-setup-gha@main
with:
version: ${{ matrix.version }}
vmDir: foo/bar
useBashOnWindows: true
- name: Test VM installation in a specific dir
run: |
echo "$PHARO"
prefix=$(pwd)
# Check if $PHARO starts with $prefix and remove it
if [[ "$PHARO" == "$prefix"* ]]; then
var="${PHARO#$prefix}"
fi
found=$(find $(pwd)/foo/bar -type f \( -iname "pharo" -o -name "Pharo.exe" \))
if [ -n "$found" ]; then
echo "Assertion passed: Found Pharo executable $found"
else
echo "Assertion failed: No Pharo executable found!"
ls -R .
return 1 # failure
fi
shell: bash
test-image-dir:
strategy:
fail-fast: false
matrix:
version: [13]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: demarey/pharo-setup-gha@main
with:
version: ${{ matrix.version }}
imageDir: foo/bar
useBashOnWindows: true
- name: Test VM installation in a specific dir
run: |
found=$(find $(pwd)/foo/bar -type f -name Pharo.image)
if [ -n "$found" ]; then
echo "Assertion passed: Found Pharo image $found"
else
echo "Assertion failed: No Pharo image found!"
ls -R .
return 1 # failure
fi
shell: bash