Skip to content

Commit a887bba

Browse files
committed
chore: add workflow to trigger cc
1 parent c3d6c48 commit a887bba

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test-cc.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Scala 3 with Capture Checking Test Suite
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
paths:
9+
- scala2-library-cc/**
10+
- scala2-library-cc-tasty/**
11+
- compiler/src/dotty/tools/dotc/cc/**
12+
13+
env:
14+
DOTTY_CI_RUN: true
15+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
16+
17+
jobs:
18+
suite-with-stdlib-cc:
19+
name: Scala 3 suite with the capture checked library
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Git Checkout
23+
uses: actions/checkout@v4
24+
- name: Test with Scala 2 library with CC TASTy
25+
run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty ;scala3-bootstrapped/test"

0 commit comments

Comments
 (0)