Skip to content

Commit

Permalink
chore: add workflow to trigger cc
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzaremmal committed Nov 30, 2024
1 parent c3d6c48 commit a887bba
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-cc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Scala 3 with Capture Checking Test Suite

on:
push:
branches:
- main
pull_request:
paths:
- scala2-library-cc/**
- scala2-library-cc-tasty/**
- compiler/src/dotty/tools/dotc/cc/**

env:
DOTTY_CI_RUN: true
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}

jobs:
suite-with-stdlib-cc:
name: Scala 3 suite with the capture checked library
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Test with Scala 2 library with CC TASTy
run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty ;scala3-bootstrapped/test"

0 comments on commit a887bba

Please sign in to comment.