Skip to content

Commit 5e25793

Browse files
authored
fix: Don't use Swift 5.8-jammy image (#27)
* Use Swift 5.7-jammy image, something is wrong with 5.8 * Switch CI to 5.7
1 parent faaede6 commit 5e25793

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949
- uses: sersoft-gmbh/SwiftyActions@v2
5050
with:
51-
release-version: "5"
51+
release-version: "5.7"
5252
github-token: ${{ secrets.GITHUB_TOKEN }}
5353
- name: Build and Test
5454
run: swift test --enable-test-discovery --enable-code-coverage

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:5.8-jammy as build
4+
FROM swift:5.7-jammy as build
55

66
# Install OS updates and, if needed, sqlite3
77
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ x-shared_environment: &shared_environment
3535
PARSE_SERVER_ENABLE_PRIVATE_USERS: 'true'
3636
PARSE_SERVER_USING_PARSECAREKIT: 'false' # If you are not using ParseCareKit, set this to 'false'
3737
PARSE_SERVER_RATE_LIMIT: 'true'
38-
PARSE_SERVER_RATE_LIMIT_REQUEST_COUNT: '1'
38+
PARSE_SERVER_RATE_LIMIT_REQUEST_COUNT: '100'
3939
PARSE_SERVER_RATE_LIMIT_INCLUDE_PRIMARY_KEY: 'false'
4040
PARSE_SERVER_RATE_LIMIT_INCLUDE_INTERNAL_REQUESTS: 'false'
4141
PARSE_DASHBOARD_START: 'true'

0 commit comments

Comments
 (0)