Skip to content

Commit

Permalink
add internal CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jul 5, 2024
1 parent 717296f commit 87fd170
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/internal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright 2024 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51

# Author: Michael Rogenmoser <[email protected]>

name: internal

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
gitlab-ci:
runs-on: ubuntu-latest
steps:
- name: Mirror and check
uses: pulp-platform/pulp-actions/gitlab-ci@v2
# Skip on forks or pull requests from forks due to missing secrets.
if: >
github.repository == 'pulp-platform/safety_island' &&
(github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == github.repository)
with:
domain: iis-git.ee.ethz.ch
repo: github-mirror/safety_island
token: ${{ secrets.GITLAB_TOKEN }}
2 changes: 1 addition & 1 deletion safed.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include $(SAFED_ROOT)/.deps
######################

NONFREE_REMOTE ?= [email protected]:carfield/safety-island-nonfree.git
NONFREE_COMMIT ?= 4ef4950629df2f683b11db14884d741281f69e48
NONFREE_COMMIT ?= ea06e7dc80eb4d3cf592af41ef1e37789336ee3c

.PHONY: nonfree-init
## Initialize Safety Island CI repository
Expand Down

0 comments on commit 87fd170

Please sign in to comment.