Skip to content

Commit

Permalink
build: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arttet committed Dec 7, 2023
1 parent 1008b97 commit 314247b
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
37 changes: 37 additions & 0 deletions .github/workflows/rust-compiler-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Rust Compiler Builder

on: [push]

jobs:
build:
strategy:
matrix:
os: [
macos-11,
# macos-12,
# macos-13,
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Checkout Rust
uses: actions/checkout@v4
with:
repository: rust-lang/rust
submodules: true
path: rust

- name: Configure Rust
run: make configure

- name: Build Rust
run: make
working-directory: ./rust

- name: Install Rust
run: |
make dist
tree
working-directory: ./rust

0 comments on commit 314247b

Please sign in to comment.