Skip to content

Commit

Permalink
set git safe directory and remove explicit encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
vtnate committed Dec 8, 2023
1 parent d7ade82 commit 958e1d0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/nightly_ci_build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Reporting-gem CI

on:
# push:
schedule:
push:
# schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
# 5 am UTC (11pm MDT the day before) every weekday night in MDT
- cron: '22 5 * * 2-6'
pull_request:
types: [review_requested]
# - cron: '22 5 * * 2-6'
# pull_request:
# types: [review_requested]

env:
# This env var should enforce develop branch of all dependencies
FAVOR_LOCAL_GEMS: true
GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }}
# Enforce language so openstudio doesn't get confused
LANG: "en_US.UTF-8"
# LANG: "C.UTF-8"

jobs:
weeknight-tests:
Expand All @@ -23,6 +23,10 @@ jobs:
image: docker://nrel/openstudio:3.7.0
steps:
- uses: actions/checkout@v4
- name: set git config options
shell: bash
run: |
git config --global --add safe.directory '*'
- name: Update gems
run: |
ruby --version
Expand Down

0 comments on commit 958e1d0

Please sign in to comment.