Skip to content

Commit 502eb6c

Browse files
author
James Martin
committed
Merge remote-tracking branch 'origin/main'
2 parents 602cafd + d9e8b75 commit 502eb6c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/integration_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
matrix:
1110
test-branch: [rails5, rails6, rails7]
11+
timeout-minutes: 20
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2

.github/workflows/rails_6_webpacker_integration_tests.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,14 @@ jobs:
4646
with:
4747
node-version: 16
4848
if: matrix.test-branch == 'rails6-webpacker'
49+
- name: Set up Python 2.7
50+
uses: actions/setup-python@v4
51+
with:
52+
python-version: '2.7'
4953
- name: Generate Webpacker config
5054
run: |
5155
cd $GITHUB_WORKSPACE/test_app
52-
yarn install --check-files
56+
CXXFLAGS="--std=c++17" yarn install --check-files
5357
bundle exec rake webpacker:compile
5458
if: matrix.test-branch == 'rails6-webpacker'
5559
- name: Test

0 commit comments

Comments
 (0)