Skip to content

Commit

Permalink
Merge pull request #3 from fraya/master
Browse files Browse the repository at this point in the history
Update infrastructure
  • Loading branch information
cgay authored Sep 18, 2024
2 parents 7f60211 + a74cf29 commit 2021d6d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: dylan-lang/install-opendylan@v1
- uses: actions/checkout@v2
- uses: dylan-lang/install-opendylan@v3
- uses: actions/checkout@v4

- name: Download dependencies
run: dylan update

- name: Build time-test-suite
run: ./dylan-compiler -build -jobs 3 time-test-suite
run: dylan build time-test-suite

- name: Run time-test-suite
run: _build/bin/time-test-suite
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# backup files
*~
*.bak
.DS_Store

# compiler build directory
_build/

# dylan tool package cache
_packages/

# package registry folder
registry/

# documentation build directory
/documentation/build/

0 comments on commit 2021d6d

Please sign in to comment.