Skip to content

Commit 0c54e68

Browse files
committed
Migrate from Travis to GHActions + Bump espell version
1 parent 8858d8b commit 0c54e68

File tree

6 files changed

+38
-3922
lines changed

6 files changed

+38
-3922
lines changed

.github/workflows/deployement.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# The goal of this action is to run when we create a tag. It will:
2+
# - Checkout the projets
3+
# - Download a Pharo image and VM
4+
# - Install the project
5+
# - Zip the result
6+
# - Upload it to the tag assets
7+
8+
name: Build and release
9+
10+
on:
11+
push:
12+
tags:
13+
- "*"
14+
15+
permissions:
16+
contents: write # allows creating / uploading release assets
17+
18+
jobs:
19+
build-and-upload:
20+
runs-on: ubuntu-latest
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
steps:
24+
- name: Checkout repository
25+
uses: actions/checkout@v6
26+
27+
- name: Run custom build / preparation steps
28+
run: |
29+
wget -O - get.pharo.org/64/${PHARO_VERSION}+vm | bash
30+
./scripts/install-packages.sh
31+
zip -r bootstrapImage Pharo.image Pharo.changes Pharo*.sources
32+
shell: bash
33+
34+
- name: Upload ZIP to the newly created release
35+
uses: softprops/action-gh-release@v2
36+
with:
37+
files: bootstrapImage.zip

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

BaselineOfBootstrapProcess/BaselineOfBootstrapProcess.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BaselineOfBootstrapProcess >> baseline: spec [
1919
spec blessing: #baseline.
2020
spec
2121
baseline: 'Espell' with: [ spec
22-
repository: 'github://guillep/espell:v1.6.1/src'].
22+
repository: 'github://guillep/espell:v1.6.2/src'].
2323
]
2424

2525
]

0 commit comments

Comments
 (0)