Skip to content
Open
Show file tree
Hide file tree
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
24 changes: 13 additions & 11 deletions .github/workflows/test-moose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,30 @@ name: CI Moose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

on:
push:
branches: [ v6 ]
pull_request:
branches: [ v6 ]
on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Moose64-12 ]
smalltalk: [ Moose64-12, Moose64-13 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

finish-coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Finish Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
1 change: 0 additions & 1 deletion .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
SmalltalkCISpec {
#preLoading : 'ci/preLoading.st',
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Carrefour',
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Carrefour

[![Moose version](https://img.shields.io/badge/Moose-12-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)
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)

[![CI](https://github.com/moosetechnology/Carrefour/actions/workflows/test-moose.yml/badge.svg?branch=v6)](https://github.com/moosetechnology/Carrefour/actions/workflows/test-moose.yml)

[![Coverage Status](https://coveralls.io/repos/github/moosetechnology/Carrefour/badge.svg?branch=v6)](https://coveralls.io/github/moosetechnology/Carrefour?branch=v6)

Binding between Famix and FAST
Expand Down
1 change: 0 additions & 1 deletion ci/preLoading.st

This file was deleted.

2 changes: 1 addition & 1 deletion src/BaselineOfCarrefour/BaselineOfCarrefour.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ BaselineOfCarrefour >> defineDependencies: spec [
spec baseline: 'FASTJava' with: [
spec
loads: #( 'all' );
repository: 'github://moosetechnology/FAST-JAVA:v3.0.9/src' ].
repository: 'github://moosetechnology/FAST-JAVA:v4.0.0/src' ].
spec
baseline: 'Famix2Java'
with: [
Expand Down
Loading