{"id":15017569,"url":"https://github.com/hpi-swa/setup-smalltalkci","last_synced_at":"2025-07-25T11:13:37.853Z","repository":{"id":40289722,"uuid":"239119309","full_name":"hpi-swa/setup-smalltalkCI","owner":"hpi-swa","description":"Use smalltalkCI to test your Smalltalk projects.","archived":false,"fork":false,"pushed_at":"2025-01-21T23:48:56.000Z","size":817,"stargazers_count":23,"open_issues_count":3,"forks_count":13,"subscribers_count":7,"default_branch":"v1","last_synced_at":"2025-04-13T02:35:48.643Z","etag":null,"topics":["actions","gemstone","github-actions","moose","pharo","smalltalk","squeak"],"latest_commit_sha":null,"homepage":"https://github.com/hpi-swa/smalltalkCI","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hpi-swa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-08T11:24:12.000Z","updated_at":"2024-06-17T11:36:42.000Z","dependencies_parsed_at":"2023-02-09T19:30:45.239Z","dependency_job_id":"70be3a4c-a853-490c-b2c2-ac93cf3444ec","html_url":"https://github.com/hpi-swa/setup-smalltalkCI","commit_stats":{"total_commits":50,"total_committers":7,"mean_commits":7.142857142857143,"dds":"0.21999999999999997","last_synced_commit":"4d1933c92141eed4cd1b869ce216357ed33410ad"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":"actions/javascript-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpi-swa%2Fsetup-smalltalkCI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpi-swa%2Fsetup-smalltalkCI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpi-swa%2Fsetup-smalltalkCI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpi-swa%2Fsetup-smalltalkCI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hpi-swa","download_url":"https://codeload.github.com/hpi-swa/setup-smalltalkCI/tar.gz/refs/heads/v1","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248675309,"owners_count":21143763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","gemstone","github-actions","moose","pharo","smalltalk","squeak"],"created_at":"2024-09-24T19:50:41.794Z","updated_at":"2025-04-13T06:36:51.649Z","avatar_url":"https://github.com/hpi-swa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-smalltalkCI\n\nThis GitHub Action sets up [smalltalkCI] for testing Smalltalk projects.\n\n## Usage\n\n### Basic\n\n```yaml\nsteps:\n  - uses: actions/checkout@v2\n  - uses: hpi-swa/setup-smalltalkCI@v1\n    id: smalltalkci\n    with:\n      smalltalk-image: 'Squeak64-trunk'\n  - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}\n    shell: bash\n    timeout-minutes: 15\n```\n\n### Testing Different Smalltalk Images\n\n```yaml\njobs:\n  build:\n    strategy:\n      matrix:\n        smalltalk: [ Squeak64-trunk, Pharo64-stable ]\n    name: ${{ matrix.smalltalk }}\n    steps:\n      - uses: actions/checkout@v2\n      - uses: hpi-swa/setup-smalltalkCI@v1\n        with:\n          smalltalk-image: ${{ matrix.smalltalk }}\n      - run: smalltalkci -s ${{ matrix.smalltalk }}\n        shell: bash\n        timeout-minutes: 15\n```\n\n### Testing Different Smalltalk Images with Different Configurations\n```yaml\njobs:\n  build:\n    strategy:\n      matrix:\n        smalltalk: [ Squeak64-trunk, Pharo64-stable ]\n        smalltalk_config: [ .smalltalkA.ston, .smalltalkB.ston ]\n    name: ${{ matrix.smalltalk }}\n    steps:\n      - uses: actions/checkout@v2\n      - uses: hpi-swa/setup-smalltalkCI@v1\n        with:\n          smalltalk-image: ${{ matrix.smalltalk }}\n      - run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.smalltalk_config }}\n        shell: bash\n        timeout-minutes: 15\n```\n\n### Use a different branch or fork\n\n```yaml\nsteps:\n  - uses: actions/checkout@v2\n  - uses: hpi-swa/setup-smalltalkCI@v1\n    id: smalltalkci\n    with:\n      smalltalk-image: 'Squeak64-trunk'\n      smalltalkCI-branch: 'testing-branch'\n      smalltalkCI-source: 'myfork/smalltalkCI'\n  - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}\n    shell: bash\n    timeout-minutes: 15\n```\n\n\n### Pharos-specific: Registering Repository in Iceberg  \n\nRegistering a repository in Iceberg allows developers to access the directory of the repository regardless of where it is located in the file system.\nThis eases access to non-Smalltalk resources.\nTo register the repository in Iceberg, you need to add `#registerInIceberg : true` to your `.smalltalk.ston` file.\n\n```smalltalk\n(IceRepository registeredRepositoryIncludingPackage: self class package) location pathString\n```\n\nHowever, Iceberg requires the full commit history.\n`actions/checkout` provides by default only the latest one.\nTherefore we need to use an option to get all commits.\n(Only available for Pharo 7 and later version at this time). \n\n```yaml\nsteps:\n  - uses: actions/checkout@v3\n    with:\n      fetch-depth: 0 # Option fetching all commits\n  - uses: hpi-swa/setup-smalltalkCI@v1\n    id: smalltalkci\n    with:\n      smalltalk-image: 'Squeak64-trunk'\n  - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}\n    shell: bash\n    timeout-minutes: 15\n```\n\n\n[smalltalkCI]: https://github.com/hpi-swa/smalltalkCI\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhpi-swa%2Fsetup-smalltalkci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhpi-swa%2Fsetup-smalltalkci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhpi-swa%2Fsetup-smalltalkci/lists"}