6 group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
7 cancel-in-progress: true
10 name: Ubuntu ${{ matrix.ubuntu }}, Ruby ${{ matrix.ruby }}
15 runs-on: ubuntu-${{ matrix.ubuntu }}
18 OPENSTREETMAP_MEMCACHE_SERVERS: 127.0.0.1
20 - name: Checkout source
21 uses: actions/checkout@v3
23 uses: actions/setup-ruby@v1.1.3
25 ruby-version: ${{ matrix.ruby }}
27 uses: actions/cache@v3
30 key: bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }}
32 bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}-
33 - name: Cache node modules
34 uses: actions/cache@v3
37 key: yarn-ubuntu-${{ matrix.ubuntu }}-${{ hashFiles('yarn.lock') }}
39 yarn-ubuntu-${{ matrix.ubuntu }}-
40 - name: Install packages
42 sudo apt-get -yqq update
43 sudo apt-get -yqq install memcached libvips-dev
47 bundle config set deployment true
48 bundle install --jobs 4 --retry 3
49 - name: Create database
51 sudo systemctl start postgresql
52 sudo -u postgres createuser -s $(id -un)
53 createdb openstreetmap
54 psql -c "CREATE EXTENSION btree_gist" openstreetmap
55 psql -f db/functions/functions.sql openstreetmap
56 - name: Configure rails
58 cp config/github.database.yml config/database.yml
59 cp config/example.storage.yml config/storage.yml
60 touch config/settings.local.yml
61 - name: Populate database
63 sed -f script/normalise-structure db/structure.sql > db/structure.expected
64 bundle exec rake db:migrate
65 sed -f script/normalise-structure db/structure.sql > db/structure.actual
66 diff -uw db/structure.expected db/structure.actual
67 - name: Export javascript strings
68 run: bundle exec rake i18n:js:export
69 - name: Install node modules
70 run: bundle exec rake yarn:install
72 run: bundle exec rails test:all
73 - name: Report completion to Coveralls
74 uses: coverallsapp/github-action@1.1.3
76 github-token: ${{ secrets.github_token }}
77 flag-name: ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}
82 runs-on: ubuntu-latest
84 - name: Report completion to Coveralls
85 uses: coverallsapp/github-action@1.1.3
87 github-token: ${{ secrets.github_token }}
88 parallel-finished: true