Skip to content

Commit 58970c0

Browse files
authored
Merge branch 'v4' into getFAST-Attribute
2 parents 339a46b + 3ee7107 commit 58970c0

File tree

197 files changed

+568
-1178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+568
-1178
lines changed

.github/workflows/testAndBuild-moose10.yml

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

.github/workflows/testAndBuild-moose11.yml

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

.github/workflows/testAndBuild-moose12.yml

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

.github/workflows/testPR.yml

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

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
env:
6+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
smalltalk: [ Moose64-12, Moose64-13 ]
14+
name: ${{ matrix.smalltalk }}
15+
steps:
16+
- uses: actions/checkout@v6
17+
- uses: hpi-swa/setup-smalltalkCI@v1
18+
with:
19+
smalltalk-image: ${{ matrix.smalltalk }}
20+
- run: smalltalkci -s ${{ matrix.smalltalk }}
21+
shell: bash
22+
timeout-minutes: 15
23+
24+
finish-coveralls:
25+
needs: build
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Finish Coveralls
29+
uses: coverallsapp/github-action@v2
30+
with:
31+
github-token: ${{ secrets.github_token }}
32+
parallel-finished: true

.smalltalk.ston

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
SmalltalkCISpec {
2-
#preLoading : 'ci/preLoading.st',
32
#loading : [
43
SCIMetacelloLoadSpec {
54
#baseline : 'FASTJava',

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
# FAST-JAVA
22

3-
[![CI Moose10](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose10.yml/badge.svg)](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose10.yml)
4-
[![CI Moose11](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose11.yml/badge.svg)](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose11.yml)
5-
[![CI Moose12](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose12.yml/badge.svg)](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/testAndBuild-moose12.yml)
3+
[![CI](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/tests.yml/badge.svg)](https://github.com/moosetechnology/FAST-JAVA/actions/workflows/tests.yml)
64

75
[![Coverage Status](https://coveralls.io/repos/github/moosetechnology/FAST-JAVA/badge.svg?branch=v3)](https://coveralls.io/github/moosetechnology/FAST-JAVA?branch=v3)
8-
[![Moose version 10](https://img.shields.io/badge/Moose-10-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)
9-
[![Moose version 11](https://img.shields.io/badge/Moose-11-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)
10-
[![Moose version 12](https://img.shields.io/badge/Moose-12-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)
6+
7+
Supported Moose Versions: [![Moose version 12](https://img.shields.io/badge/Moose-12-%23aac9ff.svg)](https://github.com/moosetechnology/Moose) [![Moose version 13](https://img.shields.io/badge/Moose-13-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)
118

129
Represent the Java AST with Famix
1310

ci/preLoading.st

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/BaselineOfFASTJava/BaselineOfFASTJava.class.st

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ BaselineOfFASTJava >> baseline: spec [
1111
spec
1212
for: #common
1313
do: [
14-
spec blessing: #baseline.
15-
spec description: 'Developement version of FAST Java using FamixNG for Pharo.'.
16-
spec author: 'BenoitVerhaeghe'.
17-
spec timestamp: '07/06/2018 00:00'.
1814
self defineDependencies: spec.
1915
self definePackages: spec.
2016
self defineGroups: spec ]
@@ -35,7 +31,7 @@ BaselineOfFASTJava >> defineDependencies: spec [
3531
spec baseline: 'FAST' with: [
3632
spec
3733
loads: #( 'default' );
38-
repository: 'github://moosetechnology/FAST:v2/src' ].
34+
repository: 'github://moosetechnology/FAST:v3/src' ].
3935
spec
4036
project: 'FASTTool'
4137
copyFrom: 'FAST'

0 commit comments

Comments
 (0)